File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ resource "aws_eip" "mod_nat" {
19
19
}
20
20
21
21
output "aws_eip_nat_ips" {
22
- value = [ aws_eip . mod_nat . * . public_ip ]
22
+ value = aws_eip. mod_nat . * . public_ip
23
23
}
24
24
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ output "aws_nat_gateway_count" {
32
32
}
33
33
34
34
output "aws_nat_gateway_ids" {
35
- value = [ aws_nat_gateway . nat_gateway . * . id ]
35
+ value = aws_nat_gateway. nat_gateway . * . id
36
36
}
37
37
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ resource "aws_route_table" "public" {
25
25
}
26
26
27
27
output "aws_route_table_public_ids" {
28
- value = [ aws_route_table . public . id ]
28
+ value = aws_route_table. public . id
29
29
}
30
30
31
31
resource "aws_route" "public_internet_gateway" {
@@ -48,7 +48,7 @@ resource "aws_route_table" "private" {
48
48
}
49
49
50
50
output "aws_route_table_private_ids" {
51
- value = [ aws_route_table . private . * . id ]
51
+ value = aws_route_table. private . * . id
52
52
}
53
53
54
54
resource "aws_route" "private_nat_gateway" {
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ resource "aws_subnet" "admin" {
31
31
}
32
32
33
33
output "aws_subnet_admin_ids" {
34
- value = [ aws_subnet . admin . * . id ]
34
+ value = aws_subnet. admin . * . id
35
35
}
36
36
37
37
resource "aws_route_table_association" "private_admin" {
@@ -55,7 +55,7 @@ resource "aws_subnet" "public" {
55
55
}
56
56
57
57
output "aws_subnet_public_ids" {
58
- value = [ aws_subnet . public . * . id ]
58
+ value = aws_subnet. public . * . id
59
59
}
60
60
61
61
resource "aws_route_table_association" "public_public" {
@@ -79,7 +79,7 @@ resource "aws_subnet" "private_prod" {
79
79
}
80
80
81
81
output "aws_subnet_private_prod_ids" {
82
- value = [ aws_subnet . private_prod . * . id ]
82
+ value = aws_subnet. private_prod . * . id
83
83
}
84
84
85
85
resource "aws_route_table_association" "private_private_prod" {
@@ -103,7 +103,7 @@ resource "aws_subnet" "private_working" {
103
103
}
104
104
105
105
output "aws_subnet_private_working_ids" {
106
- value = [ aws_subnet . private_working . * . id ]
106
+ value = aws_subnet. private_working . * . id
107
107
}
108
108
109
109
resource "aws_route_table_association" "private_private_working" {
You can’t perform that action at this time.
0 commit comments