config: test replicating #4079

Should help cover terraform against regression once
https://github.com/hashicorp/hcl/pull/70 lands.
This commit is contained in:
Paul Hinze 2015-12-01 10:31:05 -06:00
parent 3cbe014e31
commit d90eb2d88e
2 changed files with 17 additions and 0 deletions

View File

@ -685,6 +685,11 @@ aws_iam_policy[policy] (x1)
name
path
policy
aws_instance[heredocwithnumbers] (x1)
ami
provisioners
local-exec
command
aws_instance[test] (x1)
ami
provisioners

View File

@ -37,3 +37,15 @@ EOT
]
}
}
resource "aws_instance" "heredocwithnumbers" {
ami = "foo"
provisioner "local-exec" {
command = <<FOO123
echo several
lines
of output
FOO123
}
}