github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/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  }