github.com/hugorut/terraform@v1.1.3/src/terraform/testdata/plan-module-variable-from-splat/mod/main.tf (about)

     1  variable "param" {
     2    type = list(string)
     3  }
     4  
     5  resource "aws_instance" "test" {
     6    count = "2"
     7    thing = "doesnt"
     8  }
     9  
    10  output "out_from_splat" {
    11    value = aws_instance.test.*.thing
    12  }