Merge pull request #4128 from hashicorp/phinze/test-heredoc-id-with-numbers

config: test replicating #4079
This commit is contained in:
James Nugent 2015-12-01 12:20:18 -05:00
commit 7971042c18
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
}
}