forked from aws-ia/terraform-aws-networkfirewall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
moved.tf
67 lines (53 loc) · 1.82 KB
/
moved.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
# --- root/moved.tf ---
# Moved blocks for VPC routes in routing configuration centralizded_inspection_with_egress
# Maximum number of AZs in a Region is 6 (us-east-1)
moved {
from = aws_route.tgw_to_firewall_endpoint[0]
to = aws_route.connectivity_to_firewall_endpoint[0]
}
moved {
from = aws_route.tgw_to_firewall_endpoint[1]
to = aws_route.connectivity_to_firewall_endpoint[1]
}
moved {
from = aws_route.tgw_to_firewall_endpoint[2]
to = aws_route.connectivity_to_firewall_endpoint[2]
}
moved {
from = aws_route.tgw_to_firewall_endpoint[3]
to = aws_route.connectivity_to_firewall_endpoint[3]
}
moved {
from = aws_route.tgw_to_firewall_endpoint[4]
to = aws_route.connectivity_to_firewall_endpoint[4]
}
moved {
from = aws_route.tgw_to_firewall_endpoint[5]
to = aws_route.connectivity_to_firewall_endpoint[5]
}
# Moved blocks for VPC routes in routing configuration centralizded_inspection_without_egress
# Maximum number of AZs in a Region is 6 (us-east-1)
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[0]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[0]
}
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[1]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[1]
}
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[2]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[2]
}
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[3]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[3]
}
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[4]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[4]
}
moved {
from = aws_route.tgw_to_firewall_endpoint_without_egress[5]
to = aws_route.connectivity_to_firewall_endpoint_without_egress[5]
}