Skip to content

Commit 332868a

Browse files
committed
Fix double list type in output
1 parent ecc9949 commit 332868a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ output "public_route_table_id" {
5757
}
5858

5959
output "private_route_table_id" {
60-
value = [aws_route_table.private.*.id]
60+
value = aws_route_table.private.*.id
6161
}
6262

6363
output "secure_route_table_id" {
6464
value = aws_route_table.secure.id
6565
}
6666

6767
output "transit_route_table_id" {
68-
value = [aws_route_table.transit.*.id]
68+
value = aws_route_table.transit.*.id
6969
}
7070

7171
output "public_nacl_id" {
@@ -81,5 +81,5 @@ output "secure_nacl_id" {
8181
}
8282

8383
output "transit_nacl_id" {
84-
value = [aws_network_acl.transit.*.id]
84+
value = aws_network_acl.transit.*.id
8585
}

0 commit comments

Comments
 (0)