Merge pull request #110 from pokle/master

Fixed example
This commit is contained in:
Jack Pearkes 2014-07-30 10:19:57 -04:00
commit efc6f7b987
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ to run commands on the resource.
resource "aws_instance" "web" {
...
provisioner "local-exec" {
command = "cat ${aws_instance.web.private_ip} >> private_ips.txt"
command = "echo ${aws_instance.web.private_ip} >> private_ips.txt"
}
}
```