File tree 4 files changed +48
-25
lines changed
4 files changed +48
-25
lines changed Original file line number Diff line number Diff line change @@ -221,17 +221,17 @@ Available targets:
221
221
222
222
| Name | Version |
223
223
| ------| ---------|
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 |
229
229
230
230
## Providers
231
231
232
232
| Name | Version |
233
233
| ------| ---------|
234
- | aws | ~ > 2.42 |
234
+ | aws | >= 2.0 |
235
235
236
236
## Inputs
237
237
Original file line number Diff line number Diff line change 3
3
4
4
| Name | Version |
5
5
| ------| ---------|
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 |
11
11
12
12
## Providers
13
13
14
14
| Name | Version |
15
15
| ------| ---------|
16
- | aws | ~ > 2.42 |
16
+ | aws | >= 2.0 |
17
17
18
18
## Inputs
19
19
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " ~> 0.12.0"
3
-
2
+ required_version = " >= 0.12"
4
3
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
+ }
9
20
}
10
- }
21
+ }
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " >= 0.12.0, < 0.14.0"
3
-
2
+ required_version = " >= 0.12"
4
3
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
+ }
9
20
}
10
21
}
22
+
You can’t perform that action at this time.
0 commit comments