You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/query/empty-result/query.tfquery.hcl

18 lines
297 B

list "test_instance" "example" {
provider = test
config {
ami = "ami-12345"
}
}
list "test_instance" "example2" {
provider = test
config {
ami = "ami-nonexistent"
// to force deterministic ordering in the result
foo = list.test_instance.example.data[0].state.id
}
}