mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-06 09:01:42 -04:00
13 lines
177 B
HCL
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
|
|
}
|