mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-15 11:00:16 -04:00
7 lines
109 B
HCL
7 lines
109 B
HCL
variable "should_ask" {}
|
|
|
|
provider "test" {}
|
|
|
|
resource "test_instance" "foo" {
|
|
ami = "${var.should_ask}"
|
|
}
|