terraform/backend/local/testdata/refresh-var-unset/main.tf

10 lines
126 B
HCL

variable "should_ask" {}
provider "test" {
value = "${var.should_ask}"
}
resource "test_instance" "foo" {
foo = "bar"
}