Files
2023-09-20 15:16:53 +03:00

13 lines
177 B
HCL

variable "param" {
type = list(string)
}
resource "aws_instance" "test" {
count = "2"
thing = "doesnt"
}
output "out_from_splat" {
value = aws_instance.test.*.thing
}