-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnetworking.tf
More file actions
105 lines (86 loc) · 2.35 KB
/
networking.tf
File metadata and controls
105 lines (86 loc) · 2.35 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
resource "aws_vpc" "dev-vpc" {
cidr_block = var.vpc_cidr_block
tags = {
Name = "development"
}
}
# Subnets have to be allowed to automatically map public IP addresses for worker nodes
resource "aws_subnet" "dev1-subnet" {
vpc_id = aws_vpc.dev-vpc.id
cidr_block = var.dev1_subnet_cidr_block
availability_zone = var.dev1_subnet_az
map_public_ip_on_launch = true
tags = {
Name = "dev1-subnet"
"kubernetes.io/cluster/${var.cluster_name}" = "owned"
"kubernetes.io/role/elb" = "1"
}
}
resource "aws_subnet" "dev2-subnet" {
vpc_id = aws_vpc.dev-vpc.id
cidr_block = var.dev2_subnet_cidr_block
availability_zone = var.dev2_subnet_az
map_public_ip_on_launch = true
tags = {
Name = "dev2-subnet"
"kubernetes.io/cluster/${var.cluster_name}" = "owned"
"kubernetes.io/role/elb" = "1"
}
}
resource "aws_internet_gateway" "dev-gw" {
vpc_id = aws_vpc.dev-vpc.id
tags = {
Name = "dev-gw"
}
}
resource "aws_route_table" "dev-route-table" {
vpc_id = aws_vpc.dev-vpc.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.dev-gw.id
}
route {
ipv6_cidr_block = "::/0"
gateway_id = aws_internet_gateway.dev-gw.id
}
tags = {
Name = "dev-rt"
}
}
resource "aws_route_table_association" "dev1-sub-to-dev-rt" {
subnet_id = aws_subnet.dev1-subnet.id
route_table_id = aws_route_table.dev-route-table.id
}
resource "aws_route_table_association" "dev2-sub-to-dev-rt" {
subnet_id = aws_subnet.dev2-subnet.id
route_table_id = aws_route_table.dev-route-table.id
}
resource "aws_security_group" "allow-web-traffic" {
name = "allow_tls"
description = "Allow web traffic"
vpc_id = aws_vpc.dev-vpc.id
ingress {
description = "HTTPS"
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "HTTP"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = ["::/0"]
}
tags = {
Name = "allow-web"
}
}