-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroute_table_and_association.tf
44 lines (36 loc) · 1.01 KB
/
route_table_and_association.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
###########################
###### ROUTE TABLES ######
###########################
resource "aws_route_table" "public" {
vpc_id = aws_vpc.tf_vpc.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.gw.id
}
tags = {
Name = "tf-public-rt"
}
}
resource "aws_route_table" "private" {
vpc_id = aws_vpc.tf_vpc.id
tags = {
Name = "tf-private-rt"
}
route {
cidr_block = "0.0.0.0/0"
instance_id = aws_instance.bastion.id
}
}
########################################
####### ROUTE TABLE ASSOCATİON ########
########################################
resource "aws_route_table_association" "public" {
count = length(var.subnet_cidr_public)
subnet_id = element(aws_subnet.public.*.id, count.index)
route_table_id = aws_route_table.public.id
}
resource "aws_route_table_association" "private" {
count = length(var.subnet_cidr_private)
subnet_id = element(aws_subnet.private.*.id, count.index)
route_table_id = aws_route_table.private.id
}