Files
opentf/terraform/testdata/plan-module-variable-from-splat/mod/main.tf
2019-06-30 10:16:15 +02: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}"]
}