-
Notifications
You must be signed in to change notification settings - Fork 0
/
_security_group.tf
72 lines (61 loc) · 1.91 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
# =========================================================================
# Public Security Group
# =========================================================================
resource "aws_security_group" "tf_test_public_sg" {
name = "tf_test_public_sg"
vpc_id = aws_vpc.tf_test_vpc.id
tags = {
Name = "tf_test_public_sg"
}
}
resource "aws_vpc_security_group_ingress_rule" "tf_allow_inbound_ssh_public" {
description = "SSH"
security_group_id = aws_security_group.tf_test_public_sg.id
cidr_ipv4 = "0.0.0.0/0"
from_port = 22
ip_protocol = "tcp"
to_port = 22
tags = {
Name = "tf_allow_inbound_ssh"
}
}
resource "aws_vpc_security_group_ingress_rule" "tf_allow_inbound_https" {
description = "HTTPS"
security_group_id = aws_security_group.tf_test_public_sg.id
cidr_ipv4 = "0.0.0.0/0"
from_port = 443
ip_protocol = "tcp"
to_port = 443
tags = {
Name = "tf_allow_inbound_https"
}
}
resource "aws_vpc_security_group_egress_rule" "tf_allow_outbound_all" {
security_group_id = aws_security_group.tf_test_public_sg.id
cidr_ipv4 = "0.0.0.0/0"
ip_protocol = "-1"
tags = {
Name = "tf_allow_outbound_all"
}
}
# =========================================================================
# Private Security Group
# =========================================================================
resource "aws_security_group" "tf_test_private_sg" {
name = "tf_test_private_sg"
vpc_id = aws_vpc.tf_test_vpc.id
tags = {
Name = "tf_test_private_sg"
}
}
resource "aws_vpc_security_group_ingress_rule" "tf_allow_inbound_ssh_private" {
description = "SSH"
security_group_id = aws_security_group.tf_test_private_sg.id
cidr_ipv4 = "0.0.0.0/0"
from_port = 22
ip_protocol = "tcp"
to_port = 22
tags = {
Name = "tf_allow_inbound_ssh_private"
}
}