Skip to content

Commit

Permalink
Merge pull request #137 from ministryofjustice/no-splatting
Browse files Browse the repository at this point in the history
Remove splat operator from output to get string not string
  • Loading branch information
andrewmooreio authored May 1, 2024
2 parents 6c140bd + 4a07e2f commit c0e0768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
output "service_arn" {
value = var.ignore_changes ? aws_ecs_service.ignore_changes[*].id : aws_ecs_service.default[*].id
value = var.ignore_changes ? aws_ecs_service.ignore_changes[0].id : aws_ecs_service.default[0].id
description = "The ARN for the ECS Service"
}

Expand Down

0 comments on commit c0e0768

Please sign in to comment.