generated from pbs/terraform-aws-template-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlb.tf
123 lines (99 loc) · 2.86 KB
/
lb.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
resource "aws_lb" "lb" {
name = local.load_balancer_name
subnets = local.lb_subnets
security_groups = local.lb_security_groups
idle_timeout = var.idle_timeout
internal = var.internal
tags = merge(
local.tags,
{ Name = "${local.load_balancer_name} LB" },
)
}
## HTTP Listeners
resource "aws_lb_listener" "http" {
count = local.only_create_http_listener ? 1 : 0
load_balancer_arn = aws_lb.lb.id
port = var.http_port
protocol = "HTTP"
# We 403 by default, unless one of the application rules below is met.
default_action {
type = "fixed-response"
fixed_response {
content_type = "text/plain"
status_code = "403"
}
}
}
resource "aws_lb_listener" "http_redirect" {
count = local.only_create_http_listener ? 0 : 1
load_balancer_arn = aws_lb.lb.id
port = var.http_port
protocol = "HTTP"
default_action {
type = "redirect"
redirect {
port = var.https_port
protocol = "HTTPS"
status_code = "HTTP_301"
}
}
}
## HTTPS Listener
resource "aws_lb_listener" "https" {
count = var.create_https_listeners ? 1 : 0
load_balancer_arn = aws_lb.lb.id
port = var.https_port
protocol = "HTTPS"
certificate_arn = local.acm_arn
ssl_policy = var.alb_ssl_policy
# We 403 by default, unless one of the forwarding rules below is met.
default_action {
type = "fixed-response"
fixed_response {
content_type = "text/plain"
status_code = "403"
}
}
depends_on = [
aws_lb_target_group.target_group
]
}
resource "aws_lb_target_group" "target_group" {
name = local.target_group_name
target_type = "lambda"
tags = merge(local.tags, { "Name" = "${local.target_group_name} target group" })
}
resource "aws_lb_target_group_attachment" "target_group_attachment" {
target_group_arn = aws_lb_target_group.target_group.arn
target_id = module.lambda.arn
depends_on = [module.lambda_permission]
}
## Forwarding Rules
resource "aws_lb_listener_rule" "http_forward_rule" {
count = local.http_forward_rule_count
listener_arn = aws_lb_listener.http[0].arn
priority = local.route_priority + count.index
action {
type = "forward"
target_group_arn = aws_lb_target_group.target_group.arn
}
condition {
host_header {
values = [element(local.aliases, count.index)]
}
}
}
resource "aws_lb_listener_rule" "https_forward_rule" {
count = local.https_forward_rule_count
listener_arn = aws_lb_listener.https[0].arn
priority = local.route_priority + count.index
action {
type = "forward"
target_group_arn = aws_lb_target_group.target_group.arn
}
condition {
host_header {
values = [element(local.aliases, count.index)]
}
}
}