opentofu/internal/command/testdata/refresh-unset-var/main.tf

8 lines
109 B
Terraform
Raw Normal View History

2015-11-23 02:32:46 -06:00
variable "should_ask" {}
provider "test" {}
resource "test_instance" "foo" {
ami = "${var.should_ask}"
}