blob: 3ead9dd32b79680653de9c3154dcad1a7b82ecc2 [file] [log] [blame]
variable "test_var" {
default = "bar"
}
// There is a single instance in state. The plan will add a resource.
resource "test_instance" "test" {
ami = var.test_var
count = 2
}
output "test" {
value = var.test_var
}