mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 18:33:08 -04:00
17 lines
344 B
HCL
17 lines
344 B
HCL
variable "target_ami" {
|
|
description = "The AMI to search for"
|
|
type = string
|
|
validation {
|
|
condition = length(var.target_ami) > 10
|
|
error_message = "AMI ID must be longer than 10 characters."
|
|
}
|
|
}
|
|
|
|
list "test_instance" "example" {
|
|
provider = test
|
|
|
|
config {
|
|
ami = var.target_ami
|
|
foo = "invalid-instance"
|
|
}
|
|
}
|