mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
8 lines
109 B
HCL
8 lines
109 B
HCL
variable "should_ask" {}
|
|
|
|
provider "test" {}
|
|
|
|
resource "test_instance" "foo" {
|
|
ami = "${var.should_ask}"
|
|
}
|