-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutetable_resource.tf
77 lines (68 loc) · 1.75 KB
/
routetable_resource.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Create route table to internet gateway
resource "aws_route_table" "project_rt" {
vpc_id = aws_vpc.vpc.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.ig.id
}
tags = {
Name = "project-rt"
}
}
# Associate public subnets with route table
resource "aws_route_table_association" "public_route_1" {
subnet_id = aws_subnet.public_1.id
route_table_id = aws_route_table.project_rt.id
}
resource "aws_route_table_association" "public_route_2" {
subnet_id = aws_subnet.public_2.id
route_table_id = aws_route_table.project_rt.id
}
# Create security groups
resource "aws_security_group" "public_sg" {
name = "public-sg"
description = "Allow web and ssh traffic"
vpc_id = aws_vpc.vpc.id
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 22
to_port = 22
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"]
}
}
resource "aws_security_group" "private_sg" {
name = "private-sg"
description = "Allow web tier and ssh traffic"
vpc_id = aws_vpc.vpc.id
ingress {
from_port = 3306
to_port = 3306
protocol = "tcp"
cidr_blocks = ["10.0.0.0/16"]
security_groups = [ aws_security_group.public_sg.id ]
}
ingress {
from_port = 22
to_port = 22
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"]
}
}