-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsg.tf
75 lines (67 loc) · 1.63 KB
/
sg.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
resource "aws_security_group" "ecs_jenkins_service_sg" {
name = "${var.ecs_service_name}_sg"
description = "Allow ALL traffic in private subnet for ECS internal service"
vpc_id = module.vpc.vpc_id
ingress = [
{
description = "Allow all private network inbound"
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
self = false
security_groups = []
prefix_list_ids = []
}
]
egress {
cidr_blocks = ["0.0.0.0/0"]
description = "Allow all outbound"
from_port = 0
protocol = "-1"
to_port = 0
}
tags = merge(
var.tags
)
depends_on = [
module.vpc
]
}
resource "aws_security_group" "jenkins_master_public_lb_sg" {
name = "public_${var.public_load_balancer_name}_sg"
description = "Whitelist for Jenkins master WebUI in public network alb"
vpc_id = module.vpc.vpc_id
ingress {
description = "Allow 443"
from_port = 443
to_port = 443
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
self = false
}
ingress {
description = "Allow 80"
from_port = 80
to_port = 80
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
ipv6_cidr_blocks = []
self = false
}
egress {
cidr_blocks = ["0.0.0.0/0"]
description = "Allow all outbound"
from_port = 0
protocol = "-1"
to_port = 0
}
tags = merge(
var.tags
)
depends_on = [
module.vpc
]
}