forked from dawright22/eks_vault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vpc.tf
53 lines (43 loc) · 1.15 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
#
# VPC Resources
# * VPC
# * Subnets
# * Internet Gateway
# * Route Table
#
resource "aws_vpc" "multi-cloud-k8-demo" {
cidr_block = "10.0.0.0/16"
tags = {
Name = "terraform-multi-cloud-k8-demo-node"
"kubernetes.io/cluster/${random_pet.name.id}-eks" = "shared"
}
}
resource "aws_subnet" "multi-cloud-k8-demo" {
count = 2
availability_zone = data.aws_availability_zones.available.names[count.index]
cidr_block = "10.0.${count.index}.0/24"
vpc_id = aws_vpc.multi-cloud-k8-demo.id
map_public_ip_on_launch = true
tags = {
"Name" = "terraform-multi-cloud-k8-demo-node"
"kubernetes.io/cluster/${random_pet.name.id}-eks" = "shared"
}
}
resource "aws_internet_gateway" "demo" {
vpc_id = aws_vpc.multi-cloud-k8-demo.id
tags = {
Name = "multi-cloud-k8-demo"
}
}
resource "aws_route_table" "demo" {
vpc_id = aws_vpc.multi-cloud-k8-demo.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.demo.id
}
}
resource "aws_route_table_association" "demo" {
count = 2
subnet_id = aws_subnet.multi-cloud-k8-demo.*.id[count.index]
route_table_id = aws_route_table.demo.id
}