forked from JArnold704/UVASGTokyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5-Route.tf
82 lines (70 loc) · 2.3 KB
/
5-Route.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
resource "aws_route_table" "private" {
vpc_id = aws_vpc.app1.id
route = [
{
cidr_block = "0.0.0.0/0"
nat_gateway_id = aws_nat_gateway.nat.id
carrier_gateway_id = ""
destination_prefix_list_id = ""
egress_only_gateway_id = ""
gateway_id = ""
instance_id = ""
ipv6_cidr_block = ""
local_gateway_id = ""
network_interface_id = ""
transit_gateway_id = ""
vpc_endpoint_id = ""
vpc_peering_connection_id = ""
},
]
tags = {
Name = "private"
}
}
resource "aws_route_table" "public" {
vpc_id = aws_vpc.app1.id
route = [
{
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.App1_IGW.id
nat_gateway_id = ""
carrier_gateway_id = ""
destination_prefix_list_id = ""
egress_only_gateway_id = ""
instance_id = ""
ipv6_cidr_block = ""
local_gateway_id = ""
network_interface_id = ""
transit_gateway_id = ""
vpc_endpoint_id = ""
vpc_peering_connection_id = ""
},
]
tags = {
Name = "public"
}
}
resource "aws_route_table_association" "private-ap-northeast-1a" {
subnet_id = aws_subnet.private-ap-northeast-1a.id
route_table_id = aws_route_table.private.id
}
resource "aws_route_table_association" "private-ap-northeast-1c" {
subnet_id = aws_subnet.private-ap-northeast-1c.id
route_table_id = aws_route_table.private.id
}
resource "aws_route_table_association" "private-ap-northeast-1d" {
subnet_id = aws_subnet.private-ap-northeast-1d.id
route_table_id = aws_route_table.private.id
}
resource "aws_route_table_association" "public-ap-northeast-1a" {
subnet_id = aws_subnet.public-ap-northeast-1a.id
route_table_id = aws_route_table.public.id
}
resource "aws_route_table_association" "public-ap-northeast-1c" {
subnet_id = aws_subnet.public-ap-northeast-1c.id
route_table_id = aws_route_table.public.id
}
resource "aws_route_table_association" "public-ap-northeast-1d" {
subnet_id = aws_subnet.public-ap-northeast-1d.id
route_table_id = aws_route_table.public.id
}