Skip to content

Commit

Permalink
use minimum versions for provider pinning (#24)
Browse files Browse the repository at this point in the history
* Updated README.md

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
woz5999 and actions-bot authored Sep 3, 2020
1 parent 86d24ce commit 5b7deb8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,20 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| null | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| null | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -150,6 +151,7 @@ Available targets:
| autoscaler\_iam\_role\_arn | Autoscaler IAM Role ARN |
| autoscaler\_iam\_role\_id | Autoscaler IAM Role ID |

<!-- markdownlint-restore -->



Expand Down
10 changes: 6 additions & 4 deletions docs/terraform.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0, < 0.14.0 |
| aws | ~> 2.0 |
| null | ~> 2.0 |
| terraform | >= 0.12.0 |
| aws | >= 2.0 |
| null | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| aws | ~> 2.0 |
| aws | >= 2.0 |

## Inputs

Expand Down Expand Up @@ -45,3 +46,4 @@
| autoscaler\_iam\_role\_arn | Autoscaler IAM Role ARN |
| autoscaler\_iam\_role\_id | Autoscaler IAM Role ID |

<!-- markdownlint-restore -->
6 changes: 3 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_version = ">= 0.12.0, < 0.14.0"
required_version = ">= 0.12.0"

required_providers {
aws = "~> 2.0"
null = "~> 2.0"
aws = ">= 2.0"
null = ">= 2.0"
}
}

0 comments on commit 5b7deb8

Please sign in to comment.