finalized automated build for web
This commit is contained in:
@@ -2,15 +2,15 @@ resource "aws_lb" "catherine_fc_load_balancer" {
|
||||
name = "catherine-fc-lb"
|
||||
internal = false
|
||||
load_balancer_type = "application"
|
||||
security_groups = [aws_security_group.catherine_fc_lb_sg]
|
||||
subnets = [var.internal_subnet_ids]
|
||||
security_groups = [aws_security_group.catherine_fc_lb_sg.id]
|
||||
subnets = var.internal_subnet_ids
|
||||
|
||||
enable_deletion_protection = true
|
||||
|
||||
tags = var.tags
|
||||
}
|
||||
resource "aws_lb_listener" "front_end" {
|
||||
load_balancer_arn = aws_lb.front_end.arn
|
||||
resource "aws_lb_listener" "catherine_fc_load_balancer_listener" {
|
||||
load_balancer_arn = aws_lb.catherine_fc_load_balancer.arn
|
||||
port = "443"
|
||||
protocol = "HTTPS"
|
||||
ssl_policy = "ELBSecurityPolicy-TLS-1-2-Ext-2018-06"
|
||||
|
||||
Reference in New Issue
Block a user