mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-09 01:40:40 -04:00
15 lines
256 B
HCL
15 lines
256 B
HCL
// already defined in main.tf
|
|
variable "instance_name" {
|
|
description = "The instance name to search for"
|
|
type = string
|
|
}
|
|
|
|
|
|
list "test_instance" "example" {
|
|
provider = test
|
|
|
|
config {
|
|
ami = var.target_ami
|
|
foo = var.instance_name
|
|
}
|
|
}
|