Skip to content

Commit

Permalink
Update ecs_connect.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
georgepstaylor committed Feb 9, 2024
1 parent 420fc23 commit 8a642cb
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ resource "aws_lb" "delius_microservices" {
}

resource "aws_security_group" "delius_microservices_service_alb" {
name = "delius-microservices-nlb"
description = "Security group for delius microservices network load balancer"
name = "delius-microservices-alb"
description = "Security group for delius microservices service load balancer"
vpc_id = var.account_info.vpc_id
tags = merge({
Name = "delius-microservices-services-alb"
}, var.tags)
lifecycle {
create_before_destroy = true
}
}

resource "aws_vpc_security_group_ingress_rule" "from_bastion" {
Expand Down

0 comments on commit 8a642cb

Please sign in to comment.