mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
13 lines
181 B
HCL
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}"]
|
|
}
|