File tree Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Expand file tree Collapse file tree 6 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ version-resolver:
17
17
- ' bugfix'
18
18
- ' bug'
19
19
- ' hotfix'
20
- - ' no-release'
21
20
default : ' minor'
22
21
23
22
categories :
Original file line number Diff line number Diff line change 4
4
" :preserveSemverRanges"
5
5
],
6
6
"labels" : [" auto-update" ],
7
+ "dependencyDashboardAutoclose" : true ,
7
8
"enabledManagers" : [" terraform" ],
8
9
"terraform" : {
9
10
"ignorePaths" : [" **/context.tf" , " examples/**" ]
10
11
}
11
12
}
12
-
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ module "subnets" {
168
168
name = "app"
169
169
vpc_id = "vpc-XXXXXXXX"
170
170
igw_id = ["igw-XXXXXXXX"]
171
- ipv4_cidr_block = "10.0.0.0/16"
171
+ ipv4_cidr_block = [ "10.0.0.0/16"]
172
172
availability_zones = ["us-east-1a", "us-east-1b"]
173
173
}
174
174
```
@@ -185,7 +185,7 @@ module "private_tgw_subnets" {
185
185
name = "app"
186
186
vpc_id = "vpc-XXXXXXXX"
187
187
igw_id = ["igw-XXXXXXXX"]
188
- ipv4_cidr_block = "10.0.0.0/16"
188
+ ipv4_cidr_block = [ "10.0.0.0/16"]
189
189
availability_zones = ["us-east-1a", "us-east-1b"]
190
190
191
191
nat_gateway_enabled = false
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ usage: |-
126
126
name = "app"
127
127
vpc_id = "vpc-XXXXXXXX"
128
128
igw_id = ["igw-XXXXXXXX"]
129
- ipv4_cidr_block = "10.0.0.0/16"
129
+ ipv4_cidr_block = [ "10.0.0.0/16"]
130
130
availability_zones = ["us-east-1a", "us-east-1b"]
131
131
}
132
132
```
@@ -143,7 +143,7 @@ usage: |-
143
143
name = "app"
144
144
vpc_id = "vpc-XXXXXXXX"
145
145
igw_id = ["igw-XXXXXXXX"]
146
- ipv4_cidr_block = "10.0.0.0/16"
146
+ ipv4_cidr_block = [ "10.0.0.0/16"]
147
147
availability_zones = ["us-east-1a", "us-east-1b"]
148
148
149
149
nat_gateway_enabled = false
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_version = " >= 1.1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 3.71.0"
8
+ }
9
+ }
10
+ }
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_version = " >= 1.1.0"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " >= 3.71.0"
8
+ }
9
+ }
10
+ }
You can’t perform that action at this time.
0 commit comments