Skip to content

Commit 118df45

Browse files
authored
Upgrading to support aws 3.1 provider (cloudposse#79)
1 parent c179672 commit 118df45

File tree

4 files changed

+48
-25
lines changed

4 files changed

+48
-25
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -221,17 +221,17 @@ Available targets:
221221

222222
| Name | Version |
223223
|------|---------|
224-
| terraform | >= 0.12.0, < 0.14.0 |
225-
| aws | ~> 2.42 |
226-
| local | ~> 1.3 |
227-
| null | ~> 2.0 |
228-
| template | ~> 2.0 |
224+
| terraform | >= 0.12 |
225+
| aws | >= 2.0 |
226+
| local | >= 1.3 |
227+
| null | >= 2.0 |
228+
| template | >= 2.0 |
229229

230230
## Providers
231231

232232
| Name | Version |
233233
|------|---------|
234-
| aws | ~> 2.42 |
234+
| aws | >= 2.0 |
235235

236236
## Inputs
237237

docs/terraform.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33

44
| Name | Version |
55
|------|---------|
6-
| terraform | >= 0.12.0, < 0.14.0 |
7-
| aws | ~> 2.42 |
8-
| local | ~> 1.3 |
9-
| null | ~> 2.0 |
10-
| template | ~> 2.0 |
6+
| terraform | >= 0.12 |
7+
| aws | >= 2.0 |
8+
| local | >= 1.3 |
9+
| null | >= 2.0 |
10+
| template | >= 2.0 |
1111

1212
## Providers
1313

1414
| Name | Version |
1515
|------|---------|
16-
| aws | ~> 2.42 |
16+
| aws | >= 2.0 |
1717

1818
## Inputs
1919

examples/complete/versions.tf

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
terraform {
2-
required_version = "~> 0.12.0"
3-
2+
required_version = ">= 0.12"
43
required_providers {
5-
aws = "~> 2.0"
6-
template = "~> 2.0"
7-
null = "~> 2.0"
8-
local = "~> 1.3"
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = ">= 2.0"
7+
}
8+
template = {
9+
source = "hashicorp/template"
10+
version = ">= 2.0"
11+
}
12+
local = {
13+
source = "hashicorp/local"
14+
version = ">= 1.3"
15+
}
16+
null = {
17+
source = "hashicorp/null"
18+
version = ">= 2.0"
19+
}
920
}
10-
}
21+
}

versions.tf

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
terraform {
2-
required_version = ">= 0.12.0, < 0.14.0"
3-
2+
required_version = ">= 0.12"
43
required_providers {
5-
aws = "~> 2.42"
6-
template = "~> 2.0"
7-
null = "~> 2.0"
8-
local = "~> 1.3"
4+
aws = {
5+
source = "hashicorp/aws"
6+
version = ">= 2.0"
7+
}
8+
template = {
9+
source = "hashicorp/template"
10+
version = ">= 2.0"
11+
}
12+
local = {
13+
source = "hashicorp/local"
14+
version = ">= 1.3"
15+
}
16+
null = {
17+
source = "hashicorp/null"
18+
version = ">= 2.0"
19+
}
920
}
1021
}
22+

0 commit comments

Comments
 (0)