Skip to content

Commit 8673a32

Browse files
reixdRainer 'rei' Schuthactions-bot
authored
Fix aws provider version for latest terraform 0.13 (#29)
Co-authored-by: Rainer 'rei' Schuth <[email protected]> Co-authored-by: actions-bot <[email protected]>
1 parent 71ca99d commit 8673a32

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,20 +108,21 @@ Available targets:
108108
109109
```
110110
<!-- markdownlint-restore -->
111+
<!-- markdownlint-disable -->
111112
## Requirements
112113

113114
| Name | Version |
114115
|------|---------|
115-
| terraform | >= 0.12.0, < 0.14.0 |
116-
| aws | ~> 2.0 |
117-
| local | ~> 1.2 |
118-
| null | ~> 2.0 |
116+
| terraform | >= 0.12.0 |
117+
| aws | >= 2.0 |
118+
| local | >= 1.2 |
119+
| null | >= 2.0 |
119120

120121
## Providers
121122

122123
| Name | Version |
123124
|------|---------|
124-
| aws | ~> 2.0 |
125+
| aws | >= 2.0 |
125126

126127
## Inputs
127128

@@ -145,6 +146,7 @@ Available targets:
145146
| domain\_validation\_options | CNAME records that are added to the DNS zone to complete certificate validation |
146147
| id | The ID of the certificate |
147148

149+
<!-- markdownlint-restore -->
148150

149151

150152

docs/terraform.md

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

34
| Name | Version |
45
|------|---------|
5-
| terraform | >= 0.12.0, < 0.14.0 |
6-
| aws | ~> 2.0 |
7-
| local | ~> 1.2 |
8-
| null | ~> 2.0 |
6+
| terraform | >= 0.12.0 |
7+
| aws | >= 2.0 |
8+
| local | >= 1.2 |
9+
| null | >= 2.0 |
910

1011
## Providers
1112

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

1617
## Inputs
1718

@@ -35,3 +36,4 @@
3536
| domain\_validation\_options | CNAME records that are added to the DNS zone to complete certificate validation |
3637
| id | The ID of the certificate |
3738

39+
<!-- markdownlint-restore -->

versions.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
terraform {
2-
required_version = ">= 0.12.0, < 0.14.0"
2+
required_version = ">= 0.12.0"
33

44
required_providers {
5-
aws = "~> 2.0"
6-
local = "~> 1.2"
7-
null = "~> 2.0"
5+
aws = ">= 2.0"
6+
local = ">= 1.2"
7+
null = ">= 2.0"
88
}
99
}

0 commit comments

Comments
 (0)