Skip to content

Commit

Permalink
#38 correct subnet id value
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed May 3, 2024
1 parent 96662b9 commit bec74ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/ssm_parameter.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "aws_ssm_parameter" "infra_output" {
type = "SecureString"
key_id = aws_kms_key.custom_kms_key.id
value = jsonencode({
"subnet_ids" : [for subnet in aws_subnet.public : subnet.id],
"subnet_ids" : [for subnet in aws_subnet.private : subnet.id],
"security_group_id" : "${aws_security_group.custom_sg.id}",
"aws_lb_target_group" : "${aws_lb_target_group.target_group.arn}",
"cluster_id" : "${aws_ecs_cluster.app_cluster.id}",
Expand Down

0 comments on commit bec74ec

Please sign in to comment.