Files
opentf/terraform/test-fixtures/plan-module-variable-from-splat/mod/main.tf
James Nugent 56aadab115 core: Add context test for module var from splat
This adds additional coverage of the situation reported in #7195 to
prevent against regression. The actual fix was in 2356afd, in response
to #7143.
2016-07-13 11:23:56 -06:00

13 lines
181 B
HCL

variable "param" {
type = "list"
}
resource "aws_instance" "test" {
count = "2"
thing = "doesnt"
}
output "out_from_splat" {
value = ["${aws_instance.test.*.thing}"]
}