-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouteTable.tf
35 lines (32 loc) · 1.06 KB
/
routeTable.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
# Public Route Table
resource "aws_route_table" "public" {
vpc_id = aws_vpc.csye6225_Swamy_Dev.id
tags = {
Name = "public-route-table"
}
}
# Associate Public Subnets with Public Route Table
resource "aws_route_table_association" "public_subnet_associations" {
count = length(var.public_subnet_cidrs)
subnet_id = aws_subnet.public_subnets[count.index].id
route_table_id = aws_route_table.public.id
}
# Create route to the internet
resource "aws_route" "public_internet_access" {
route_table_id = aws_route_table.public.id
destination_cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.gw.id
}
# Private Route Table
resource "aws_route_table" "private" {
vpc_id = aws_vpc.csye6225_Swamy_Dev.id
tags = {
Name = "private-route-table"
}
}
# Associate private route table with private subnets
resource "aws_route_table_association" "private_association" {
count = length(var.private_subnet_cidrs)
subnet_id = aws_subnet.private_subnets[count.index].id
route_table_id = aws_route_table.private.id
}