blob: d1ae7929a45363c212cd6a2fca73a4ca38216bc9 [file] [log] [blame]
variable "test_var" {
default = "foo-var"
}
resource "test_instance" "test" {
ami = var.test_var
count = 1
}
output "test" {
value = var.test_var
}
provider "test" {}