Skip to content

Commit 17b6655

Browse files
open it up to v3 of the aws provider (#20)
* open it up to v3 of the aws provider * update * as requested * Updated README.md Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
1 parent a05338a commit 17b6655

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
@@ -99,20 +99,21 @@ Available targets:
9999
100100
```
101101
<!-- markdownlint-restore -->
102+
<!-- markdownlint-disable -->
102103
## Requirements
103104

104105
| Name | Version |
105106
|------|---------|
106107
| terraform | >= 0.12.0 |
107-
| aws | ~> 2.0 |
108+
| aws | >= 2.0 |
108109
| local | ~> 1.2 |
109110
| null | ~> 2.0 |
110111

111112
## Providers
112113

113114
| Name | Version |
114115
|------|---------|
115-
| aws | ~> 2.0 |
116+
| aws | >= 2.0 |
116117

117118
## Inputs
118119

@@ -141,6 +142,7 @@ Available targets:
141142
| user\_name | Normalized IAM user name |
142143
| user\_unique\_id | The user unique ID assigned by AWS |
143144

145+
<!-- markdownlint-restore -->
144146

145147

146148

docs/terraform.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
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

1011
## Providers
1112

1213
| Name | Version |
1314
|------|---------|
14-
| aws | ~> 2.0 |
15+
| aws | >= 2.0 |
1516

1617
## Inputs
1718

@@ -40,3 +41,4 @@
4041
| user\_name | Normalized IAM user name |
4142
| user\_unique\_id | The user unique ID assigned by AWS |
4243

44+
<!-- 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
local = "~> 1.2"
77
null = "~> 2.0"
88
}

0 commit comments

Comments
 (0)