generated from pbs/terraform-aws-template-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecurity.tf
96 lines (62 loc) · 2.39 KB
/
security.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
92
93
94
95
96
resource "aws_security_group" "lb_sg" {
count = var.create_lb_sg ? 1 : 0
description = "Controls access to the ${local.name} load balancer"
vpc_id = local.vpc_id
name_prefix = "${local.load_balancer_name}-sg-"
tags = merge(
local.tags,
{ Name = "${local.load_balancer_name} LB SG" },
)
}
module "lb_egress" {
count = var.create_lb_sg ? 1 : 0
source = "github.com/pbs/terraform-aws-sg-rule-module?ref=0.0.23"
security_group_id = aws_security_group.lb_sg[0].id
description = "Allow all traffic out"
type = "egress"
port = 0
protocol = "all"
source_cidr_blocks = [
"0.0.0.0/0"
]
}
module "lb_http_ingress_cidrs" {
count = var.create_lb_sg && local.create_cidr_access_rule ? 1 : 0
source = "github.com/pbs/terraform-aws-sg-rule-module?ref=0.0.23"
security_group_id = aws_security_group.lb_sg[0].id
description = "Allow HTTP traffic to the lb for specific CIDRs"
port = var.http_port
source_cidr_blocks = var.restricted_cidr_blocks
}
module "lb_http_ingress_sgs" {
count = var.create_lb_sg && local.create_sg_access_rule ? 1 : 0
source = "github.com/pbs/terraform-aws-sg-rule-module?ref=0.0.23"
security_group_id = aws_security_group.lb_sg[0].id
description = "Allow HTTP traffic to the lb for specific SGs"
port = var.http_port
source_security_group_id = var.restricted_sg
}
module "lb_https_ingress_cidrs" {
count = var.create_lb_sg && local.create_cidr_access_rule ? 1 : 0
source = "github.com/pbs/terraform-aws-sg-rule-module?ref=0.0.23"
security_group_id = aws_security_group.lb_sg[0].id
description = "Allow HTTPS traffic to the lb for specific CIDRs"
port = var.https_port
source_cidr_blocks = var.restricted_cidr_blocks
}
module "lb_https_ingress_sgs" {
count = var.create_lb_sg && local.create_sg_access_rule ? 1 : 0
source = "github.com/pbs/terraform-aws-sg-rule-module?ref=0.0.21"
security_group_id = aws_security_group.lb_sg[0].id
description = "Allow HTTPS traffic to the lb for specific SGs"
port = var.https_port
source_security_group_id = var.restricted_sg
}
module "lambda_permission" {
source = "github.com/pbs/terraform-aws-lambda-permission-module?ref=0.0.14"
statement_id = "AllowExecutionFromLB"
action = "lambda:InvokeFunction"
function_name = module.lambda.name
principal = "elasticloadbalancing.amazonaws.com"
source_arn = aws_lb_target_group.target_group.arn
}