-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc.tf
57 lines (46 loc) · 1.08 KB
/
vpc.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
#
# VPC Resources
# * VPC
# * Subnets
# * Internet Gateway
# * Route Table
#
resource "aws_vpc" "swarm" {
cidr_block = "10.0.0.0/16"
tags = "${
map(
"Name", "terraform-eks-swarm-node",
"kubernetes.io/cluster/${var.cluster-name}", "shared",
)
}"
}
resource "aws_subnet" "swarm" {
count = 2
availability_zone = "${data.aws_availability_zones.available.names[count.index]}"
cidr_block = "10.0.${count.index}.0/24"
vpc_id = "${aws_vpc.swarm.id}"
tags = "${
map(
"Name", "terraform-eks-swarm-node",
"kubernetes.io/cluster/${var.cluster-name}", "shared",
)
}"
}
resource "aws_internet_gateway" "swarm" {
vpc_id = "${aws_vpc.swarm.id}"
tags = {
Name = "terraform-eks-swarm"
}
}
resource "aws_route_table" "swarm" {
vpc_id = "${aws_vpc.swarm.id}"
route {
cidr_block = "0.0.0.0/0"
gateway_id = "${aws_internet_gateway.swarm.id}"
}
}
resource "aws_route_table_association" "swarm" {
count = 2
subnet_id = "${aws_subnet.swarm.*.id[count.index]}"
route_table_id = "${aws_route_table.swarm.id}"
}