Fix a typo in the output command examples

This commit is contained in:
Seth Vargo 2016-09-13 11:31:51 +01:00
parent cdf6c76f36
commit 4ef2fe41ba
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ output "lb_address" {
}
output "instance_ips" {
value = "${aws_instance.web.*.public_ip}"
value = ["${aws_instance.web.*.public_ip}"]
}
```