mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-22 22:57:08 -04:00
15 lines
190 B
HCL
15 lines
190 B
HCL
list "test_instance" "example" {
|
|
provider = test
|
|
|
|
config {
|
|
ami = "ami-12345"
|
|
}
|
|
}
|
|
|
|
list "test_instance" "example2" {
|
|
provider = test
|
|
|
|
config {
|
|
ami = "ami-nonexistent"
|
|
}
|
|
}
|