Merge pull request #887 from xorl/example_fix

examples: fix output type
This commit is contained in:
Mitchell Hashimoto 2015-02-03 10:29:04 +01:00
commit f6984ce693
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
output "address" {
value = "Instances: ${aws_instance.web.*.id}"
value = "Instances: ${element(aws_instance.web.*.id, 0)}"
}