This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
forked from Kgirthofer/aws_ha_vpc_terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
moves.tf
119 lines (96 loc) · 1.97 KB
/
moves.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
moved {
from = aws_eip.private_gw_a
to = aws_eip.private_gw[0]
}
moved {
from = aws_eip.private_gw_b
to = aws_eip.private_gw[1]
}
moved {
from = aws_eip.private_gw_c
to = aws_eip.private_gw[2]
}
moved {
from = aws_nat_gateway.private_gw_a
to = aws_nat_gateway.private_gw[0]
}
moved {
from = aws_nat_gateway.private_gw_b
to = aws_nat_gateway.private_gw[1]
}
moved {
from = aws_nat_gateway.private_gw_c
to = aws_nat_gateway.private_gw[2]
}
moved {
from = aws_route_table_association.public_a
to = aws_route_table_association.public[0]
}
moved {
from = aws_route_table_association.public_b
to = aws_route_table_association.public[1]
}
moved {
from = aws_route_table_association.public_c
to = aws_route_table_association.public[2]
}
moved {
from = aws_route_table_association.private_a
to = aws_route_table_association.private[0]
}
moved {
from = aws_route_table_association.private_b
to = aws_route_table_association.private[1]
}
moved {
from = aws_route_table_association.private_c
to = aws_route_table_association.private[2]
}
moved {
from = aws_route_table.private_a
to = aws_route_table.private[0]
}
moved {
from = aws_route_table.private_b
to = aws_route_table.private[1]
}
moved {
from = aws_route_table.private_c
to = aws_route_table.private[2]
}
moved {
from = aws_route.private_igw_a
to = aws_route.private_igw[0]
}
moved {
from = aws_route.private_igw_b
to = aws_route.private_igw[1]
}
moved {
from = aws_route.private_igw_c
to = aws_route.private_igw[2]
}
moved {
from = aws_subnet.public_a
to = aws_subnet.public[0]
}
moved {
from = aws_subnet.public_b
to = aws_subnet.public[1]
}
moved {
from = aws_subnet.public_c
to = aws_subnet.public[2]
}
moved {
from = aws_subnet.private_a
to = aws_subnet.private[0]
}
moved {
from = aws_subnet.private_b
to = aws_subnet.private[1]
}
moved {
from = aws_subnet.private_c
to = aws_subnet.private[2]
}