-
Notifications
You must be signed in to change notification settings - Fork 1
/
routing.tf
45 lines (36 loc) · 1.77 KB
/
routing.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
resource "aws_route_table" "public" {
vpc_id = "${aws_vpc.vpc.id}"
count = "${length(var.aws_availability_zones)}"
tags = "${merge("${var.tags}" ,map("Name", "${var.vpc_name}-public-${count.index + 1}"))}"
}
resource "aws_route_table" "private" {
vpc_id = "${aws_vpc.vpc.id}"
count = length(var.aws_availability_zones)
tags = "${merge("${var.tags}", map("Name", "${var.vpc_name}-private-${count.index + 1}"))}"
}
resource "aws_route" "public-internet" {
depends_on = [aws_route_table.public]
# count = "${length(aws_route_table.public.*.id)}" # Cannot use it due to bug in dependency graph
count = "${length(var.aws_availability_zones)}"
route_table_id = "${element(aws_route_table.public.*.id, count.index)}"
destination_cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.gw.id}"
}
resource "aws_route" "private-internet" {
depends_on = [aws_route_table.private]
# count = "${length(aws_route_table.private.*.id)}" # Cannot use it due to bug in dependency graph
count = length(var.aws_availability_zones)
route_table_id = "${element(aws_route_table.private.*.id, count.index)}"
destination_cidr_block = "0.0.0.0/0"
nat_gateway_id = "${element(aws_nat_gateway.gw.*.id, count.index)}"
}
resource "aws_route_table_association" "public" {
count = length(var.aws_availability_zones)
subnet_id = "${element(aws_subnet.public.*.id, count.index)}"
route_table_id = "${element(aws_route_table.public.*.id, count.index)}"
}
resource "aws_route_table_association" "private" {
count = length(var.aws_availability_zones)
subnet_id = "${element(aws_subnet.private.*.id, count.index)}"
route_table_id = "${element(aws_route_table.private.*.id, count.index)}"
}