route/vendor/github.com/hashicorp/terraform/backend/local/test-fixtures/refresh-var-unset/main.tf

10 lines
126 B
Terraform
Raw Normal View History

2017-12-02 23:34:35 +00:00
variable "should_ask" {}
provider "test" {
value = "${var.should_ask}"
}
resource "test_instance" "foo" {
foo = "bar"
}