@@ -60,7 +60,7 @@ output "vpc_ipv6_cidr_block" {
60
60
61
61
output "vpc_secondary_cidr_blocks" {
62
62
description = " List of secondary CIDR blocks of the VPC"
63
- value = aws_vpc_ipv4_cidr_block_association. this [* ]. cidr_block
63
+ value = compact ( aws_vpc_ipv4_cidr_block_association. this [* ]. cidr_block )
64
64
}
65
65
66
66
output "vpc_owner_id" {
@@ -80,12 +80,12 @@ output "private_subnet_arns" {
80
80
81
81
output "private_subnets_cidr_blocks" {
82
82
description = " List of cidr_blocks of private subnets"
83
- value = aws_subnet. private [* ]. cidr_block
83
+ value = compact ( aws_subnet. private [* ]. cidr_block )
84
84
}
85
85
86
86
output "private_subnets_ipv6_cidr_blocks" {
87
87
description = " List of IPv6 cidr_blocks of private subnets in an IPv6 enabled VPC"
88
- value = aws_subnet. private [* ]. ipv6_cidr_block
88
+ value = compact ( aws_subnet. private [* ]. ipv6_cidr_block )
89
89
}
90
90
91
91
output "public_subnets" {
@@ -100,12 +100,12 @@ output "public_subnet_arns" {
100
100
101
101
output "public_subnets_cidr_blocks" {
102
102
description = " List of cidr_blocks of public subnets"
103
- value = aws_subnet. public [* ]. cidr_block
103
+ value = compact ( aws_subnet. public [* ]. cidr_block )
104
104
}
105
105
106
106
output "public_subnets_ipv6_cidr_blocks" {
107
107
description = " List of IPv6 cidr_blocks of public subnets in an IPv6 enabled VPC"
108
- value = aws_subnet. public [* ]. ipv6_cidr_block
108
+ value = compact ( aws_subnet. public [* ]. ipv6_cidr_block )
109
109
}
110
110
111
111
output "outpost_subnets" {
@@ -120,12 +120,12 @@ output "outpost_subnet_arns" {
120
120
121
121
output "outpost_subnets_cidr_blocks" {
122
122
description = " List of cidr_blocks of outpost subnets"
123
- value = aws_subnet. outpost [* ]. cidr_block
123
+ value = compact ( aws_subnet. outpost [* ]. cidr_block )
124
124
}
125
125
126
126
output "outpost_subnets_ipv6_cidr_blocks" {
127
127
description = " List of IPv6 cidr_blocks of outpost subnets in an IPv6 enabled VPC"
128
- value = aws_subnet. outpost [* ]. ipv6_cidr_block
128
+ value = compact ( aws_subnet. outpost [* ]. ipv6_cidr_block )
129
129
}
130
130
131
131
output "database_subnets" {
@@ -140,12 +140,12 @@ output "database_subnet_arns" {
140
140
141
141
output "database_subnets_cidr_blocks" {
142
142
description = " List of cidr_blocks of database subnets"
143
- value = aws_subnet. database [* ]. cidr_block
143
+ value = compact ( aws_subnet. database [* ]. cidr_block )
144
144
}
145
145
146
146
output "database_subnets_ipv6_cidr_blocks" {
147
147
description = " List of IPv6 cidr_blocks of database subnets in an IPv6 enabled VPC"
148
- value = aws_subnet. database [* ]. ipv6_cidr_block
148
+ value = compact ( aws_subnet. database [* ]. ipv6_cidr_block )
149
149
}
150
150
151
151
output "database_subnet_group" {
@@ -170,12 +170,12 @@ output "redshift_subnet_arns" {
170
170
171
171
output "redshift_subnets_cidr_blocks" {
172
172
description = " List of cidr_blocks of redshift subnets"
173
- value = aws_subnet. redshift [* ]. cidr_block
173
+ value = compact ( aws_subnet. redshift [* ]. cidr_block )
174
174
}
175
175
176
176
output "redshift_subnets_ipv6_cidr_blocks" {
177
177
description = " List of IPv6 cidr_blocks of redshift subnets in an IPv6 enabled VPC"
178
- value = aws_subnet. redshift [* ]. ipv6_cidr_block
178
+ value = compact ( aws_subnet. redshift [* ]. ipv6_cidr_block )
179
179
}
180
180
181
181
output "redshift_subnet_group" {
@@ -195,12 +195,12 @@ output "elasticache_subnet_arns" {
195
195
196
196
output "elasticache_subnets_cidr_blocks" {
197
197
description = " List of cidr_blocks of elasticache subnets"
198
- value = aws_subnet. elasticache [* ]. cidr_block
198
+ value = compact ( aws_subnet. elasticache [* ]. cidr_block )
199
199
}
200
200
201
201
output "elasticache_subnets_ipv6_cidr_blocks" {
202
202
description = " List of IPv6 cidr_blocks of elasticache subnets in an IPv6 enabled VPC"
203
- value = aws_subnet. elasticache [* ]. ipv6_cidr_block
203
+ value = compact ( aws_subnet. elasticache [* ]. ipv6_cidr_block )
204
204
}
205
205
206
206
output "intra_subnets" {
@@ -215,12 +215,12 @@ output "intra_subnet_arns" {
215
215
216
216
output "intra_subnets_cidr_blocks" {
217
217
description = " List of cidr_blocks of intra subnets"
218
- value = aws_subnet. intra [* ]. cidr_block
218
+ value = compact ( aws_subnet. intra [* ]. cidr_block )
219
219
}
220
220
221
221
output "intra_subnets_ipv6_cidr_blocks" {
222
222
description = " List of IPv6 cidr_blocks of intra subnets in an IPv6 enabled VPC"
223
- value = aws_subnet. intra [* ]. ipv6_cidr_block
223
+ value = compact ( aws_subnet. intra [* ]. ipv6_cidr_block )
224
224
}
225
225
226
226
output "elasticache_subnet_group" {
0 commit comments