Skip to content

Commit 1e58b92

Browse files
ensure we can take v3 of the aws provider (#62)
* ensure we can take v3 of the aws provider * change pinning * updated as requested * updates as requested * fix whitespace * Updated README.md Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
1 parent 85d6491 commit 1e58b92

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
@@ -197,19 +197,20 @@ Available targets:
197197
198198
```
199199
<!-- markdownlint-restore -->
200+
<!-- markdownlint-disable -->
200201
## Requirements
201202

202203
| Name | Version |
203204
|------|---------|
204205
| terraform | >= 0.12.0 |
205-
| aws | ~> 2.0 |
206+
| aws | >= 2.0 |
206207
| null | ~> 2.0 |
207208

208209
## Providers
209210

210211
| Name | Version |
211212
|------|---------|
212-
| aws | ~> 2.0 |
213+
| aws | >= 2.0 |
213214
| null | ~> 2.0 |
214215

215216
## Inputs
@@ -258,6 +259,7 @@ Available targets:
258259
| table\_stream\_arn | DynamoDB table stream ARN |
259260
| table\_stream\_label | DynamoDB table stream label |
260261

262+
<!-- markdownlint-restore -->
261263

262264

263265

docs/terraform.md

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

34
| Name | Version |
45
|------|---------|
56
| terraform | >= 0.12.0 |
6-
| aws | ~> 2.0 |
7+
| aws | >= 2.0 |
78
| null | ~> 2.0 |
89

910
## Providers
1011

1112
| Name | Version |
1213
|------|---------|
13-
| aws | ~> 2.0 |
14+
| aws | >= 2.0 |
1415
| null | ~> 2.0 |
1516

1617
## Inputs
@@ -59,3 +60,4 @@
5960
| table\_stream\_arn | DynamoDB table stream ARN |
6061
| table\_stream\_label | DynamoDB table stream label |
6162

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

0 commit comments

Comments
 (0)