Skip to content

Commit

Permalink
Relax AWS Version Pinning (#67)
Browse files Browse the repository at this point in the history
* version bump

* Updated README.md

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
jayzalowitz and actions-bot authored Oct 1, 2020
1 parent c3227e3 commit 84c2a78
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,13 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| local | ~> 1.2 |
| null | ~> 2.0 |
| random | ~> 2.1 |
Expand All @@ -140,7 +141,7 @@ Available targets:

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

## Inputs
Expand Down Expand Up @@ -199,6 +200,7 @@ Available targets:
| role\_arn | IAM Role ARN |
| role\_id | IAM Role ID |

<!-- markdownlint-restore -->



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

| Name | Version |
|------|---------|
| terraform | >= 0.12.0 |
| aws | ~> 2.0 |
| aws | >= 2.0 |
| local | ~> 1.2 |
| null | ~> 2.0 |
| random | ~> 2.1 |
Expand All @@ -13,7 +14,7 @@

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

## Inputs
Expand Down Expand Up @@ -72,3 +73,4 @@
| role\_arn | IAM Role ARN |
| role\_id | IAM Role ID |

<!-- markdownlint-restore -->
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_version = ">= 0.12.0"

required_providers {
aws = "~> 2.0"
aws = ">= 2.0"
template = "~> 2.0"
local = "~> 1.2"
random = "~> 2.1"
Expand Down

0 comments on commit 84c2a78

Please sign in to comment.