blob: 66127d36b0ab05d1e41da3ac5e3bc7898442f9a4 [file] [log] [blame]
variable "param" {
type = list(string)
}
resource "aws_instance" "test" {
count = "2"
thing = "doesnt"
}
output "out_from_splat" {
value = aws_instance.test.*.thing
}