mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
17 lines
297 B
HCL
17 lines
297 B
HCL
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
|
|
}
|
|
}
|