-
Notifications
You must be signed in to change notification settings - Fork 0
/
security_group.tf
91 lines (79 loc) · 1.88 KB
/
security_group.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ! ============ Security Group ============
# Dev instance SG
resource "aws_security_group" "_dev_sg" {
name = "x_dev_sg"
description = "Security Group rules for dev instance."
vpc_id = aws_vpc._vpc.id
ingress {
from_port = 22
protocol = "tcp"
to_port = 22
cidr_blocks = var.dev_ips
}
ingress {
from_port = 80
protocol = "tcp"
to_port = 80
cidr_blocks = var.dev_ips
}
egress {
from_port = 0
protocol = -1
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
}
}
# Public Elastic Load Balancer - ELB
resource "aws_security_group" "_public_sg" {
name = "x_public_sg"
description = "give access to ELB to connect to internet."
vpc_id = aws_vpc._vpc.id
ingress {
from_port = 80
protocol = "tcp"
to_port = 80
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
protocol = -1
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
}
}
# Private ec2 intances, communication inside VPC network
resource "aws_security_group" "_private_sg" {
name = "x_private_sg"
description = "Communication for all resources in VPC."
vpc_id = aws_vpc._vpc.id
# Access from VPC
ingress {
from_port = 0
protocol = -1
to_port = 0
cidr_blocks = [var.vpc_cidrs]
}
egress {
from_port = 0
protocol = -1
to_port = 0
cidr_blocks = ["0.0.0.0/0"]
}
}
# Relational Database - RDS
resource "aws_security_group" "_rds_sg" {
name = "x_private_rds_sg"
description = "Security Group rules for RDS instances."
vpc_id = aws_vpc._vpc.id
# SQL access from public/private SGs
ingress {
from_port = 5432
protocol = "tcp"
to_port = 5432
security_groups = [
aws_security_group._dev_sg.id,
aws_security_group._public_sg.id,
aws_security_group._private_sg.id
]
}
}