-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathALB.tf
34 lines (26 loc) · 1004 Bytes
/
ALB.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
######################################################################################
# APPLICATION LOAD BALANCER CONFIGUATION
######################################################################################
# Create an ALB
resource "aws_lb" "alb" {
name = "alb"
internal = false
load_balancer_type = "application"
subnets = [aws_subnet.public_subnet_1a.id, aws_subnet.public_subnet_1b.id]
security_groups = [aws_security_group.alb_sg.id]
tags = {
Name = "alb"
}
}
# Create a listener for the ALB
resource "aws_lb_listener" "alb_listener" {
load_balancer_arn = aws_lb.alb.arn
protocol = "HTTP"
port = 80
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.alb_tg.arn
}
}
######################################################################################
######################################################################################