Skip to content

Commit

Permalink
Update_261124_2
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckingham authored and Buckingham committed Nov 26, 2024
1 parent 7f2e482 commit 7b597f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/environments/ppud/alb_external.tf
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ resource "aws_lb_target_group_attachment" "WAM-Portal-production" {

resource "aws_lb_target_group" "WAM-Target-Group-Dev" {
count = local.is-development == true ? 1 : 0
name = "WAM"
name = "WAM-Dev"
port = 443
protocol = "HTTPS"
vpc_id = data.aws_vpc.shared.id
Expand All @@ -219,7 +219,7 @@ resource "aws_lb_target_group" "WAM-Target-Group-Dev" {

resource "aws_lb_target_group" "WAM-Target-Group-Preprod" {
count = local.is-preproduction == true ? 1 : 0
name = "WAM"
name = "WAM-Preprod"
port = 80
protocol = "HTTP"
vpc_id = data.aws_vpc.shared.id
Expand All @@ -242,7 +242,7 @@ resource "aws_lb_target_group" "WAM-Target-Group-Preprod" {

resource "aws_lb_target_group" "WAM-Target-Group-Prod" {
count = local.is-production == true ? 1 : 0
name = "WAM"
name = "WAM-Prod"
port = 80
protocol = "HTTP"
vpc_id = data.aws_vpc.shared.id
Expand Down

0 comments on commit 7b597f2

Please sign in to comment.