diff --git a/examples/aws-count/outputs.tf b/examples/aws-count/outputs.tf index fd703a8e2..96e7fd52b 100644 --- a/examples/aws-count/outputs.tf +++ b/examples/aws-count/outputs.tf @@ -1,3 +1,3 @@ output "address" { - value = "Instances: ${aws_instance.web.*.id}" + value = "Instances: ${element(aws_instance.web.*.id, 0)}" }