Skip to content

Commit 84c2a78

Browse files
Relax AWS Version Pinning (#67)
* version bump * Updated README.md Co-authored-by: actions-bot <[email protected]>
1 parent c3227e3 commit 84c2a78

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,12 +125,13 @@ Available targets:
125125
126126
```
127127
<!-- markdownlint-restore -->
128+
<!-- markdownlint-disable -->
128129
## Requirements
129130

130131
| Name | Version |
131132
|------|---------|
132133
| terraform | >= 0.12.0 |
133-
| aws | ~> 2.0 |
134+
| aws | >= 2.0 |
134135
| local | ~> 1.2 |
135136
| null | ~> 2.0 |
136137
| random | ~> 2.1 |
@@ -140,7 +141,7 @@ Available targets:
140141

141142
| Name | Version |
142143
|------|---------|
143-
| aws | ~> 2.0 |
144+
| aws | >= 2.0 |
144145
| random | ~> 2.1 |
145146

146147
## Inputs
@@ -199,6 +200,7 @@ Available targets:
199200
| role\_arn | IAM Role ARN |
200201
| role\_id | IAM Role ID |
201202

203+
<!-- markdownlint-restore -->
202204

203205

204206

docs/terraform.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
<!-- markdownlint-disable -->
12
## Requirements
23

34
| Name | Version |
45
|------|---------|
56
| terraform | >= 0.12.0 |
6-
| aws | ~> 2.0 |
7+
| aws | >= 2.0 |
78
| local | ~> 1.2 |
89
| null | ~> 2.0 |
910
| random | ~> 2.1 |
@@ -13,7 +14,7 @@
1314

1415
| Name | Version |
1516
|------|---------|
16-
| aws | ~> 2.0 |
17+
| aws | >= 2.0 |
1718
| random | ~> 2.1 |
1819

1920
## Inputs
@@ -72,3 +73,4 @@
7273
| role\_arn | IAM Role ARN |
7374
| role\_id | IAM Role ID |
7475

76+
<!-- markdownlint-restore -->

versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_version = ">= 0.12.0"
33

44
required_providers {
5-
aws = "~> 2.0"
5+
aws = ">= 2.0"
66
template = "~> 2.0"
77
local = "~> 1.2"
88
random = "~> 2.1"

0 commit comments

Comments
 (0)