-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.tf
48 lines (39 loc) · 1.5 KB
/
routes.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
# private route table
resource "aws_route_table" "private" {
vpc_id = aws_vpc.main.id
route {
cidr_block = "0.0.0.0/0" # cidr block that indicate the default route: if no other route match the request, this route will be used by the request (the destination IP addresse)
nat_gateway_id = aws_nat_gateway.nat.id # in this case, if the application wants to send a request to an IP address wich is not within the VPC range, it will be routes outside of the VPC using the NAT gateway
}
tags = {
Name = "${local.env}-private"
}
}
# public route table
resource "aws_route_table" "public" {
vpc_id = aws_vpc.main.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_nat_gateway.nat.id # we are using the internet gateway as a default route
}
tags = {
Name = "${local.env}-private"
}
}
# finally, we associate the route table with the 4 subnets
resource "aws_route_table_association" "private_zone1" {
subnet_id = aws_subnet.private_subnet_zone1.id
route_table_id = aws_route_table.private.id
}
resource "aws_route_table_association" "private_zone2" {
subnet_id = aws_subnet.private_subnet_zone2.id
route_table_id = aws_route_table.private.id
}
resource "aws_route_table_association" "public_zone1" {
subnet_id = aws_subnet.public_subnet_zone1.id
route_table_id = aws_route_table.public.id
}
resource "aws_route_table_association" "public_zone2" {
subnet_id = aws_subnet.public_subnet_zone2.id
route_table_id = aws_route_table.public.id
}