We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc9949 commit 332868aCopy full SHA for 332868a
_outputs.tf
@@ -57,15 +57,15 @@ output "public_route_table_id" {
57
}
58
59
output "private_route_table_id" {
60
- value = [aws_route_table.private.*.id]
+ value = aws_route_table.private.*.id
61
62
63
output "secure_route_table_id" {
64
value = aws_route_table.secure.id
65
66
67
output "transit_route_table_id" {
68
- value = [aws_route_table.transit.*.id]
+ value = aws_route_table.transit.*.id
69
70
71
output "public_nacl_id" {
@@ -81,5 +81,5 @@ output "secure_nacl_id" {
81
82
83
output "transit_nacl_id" {
84
- value = [aws_network_acl.transit.*.id]
+ value = aws_network_acl.transit.*.id
85
0 commit comments