Skip to content

Commit

Permalink
Changed to store the name of the target groups #98
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed Oct 4, 2024
1 parent b79cd04 commit a69a31b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/ssm_parameter.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ resource "aws_ssm_parameter" "infra_output" {
value = jsonencode({
"subnet_ids" : [for subnet in aws_subnet.private : subnet.id],
"container_security_group_id" : "${aws_security_group.container_sg.id}",
"aws_lb_blue_target_group" : "${aws_lb_target_group.blue_target_group.arn}",
"aws_lb_green_target_group" : "${aws_lb_target_group.green_target_group.arn}",
"aws_lb_blue_target_group" : "${aws_lb_target_group.blue_target_group.name}",
"aws_lb_green_target_group" : "${aws_lb_target_group.green_target_group.name}",
"aws_lb_listener" : "${aws_alb_listener.listener.arn}",
"aws_lb" : "${aws_lb.app_lb.arn}",
"aws_vpc_id" : "${aws_vpc.this.id}",
Expand Down

0 comments on commit a69a31b

Please sign in to comment.