mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
2dce764d75
This adds a new input mode for Context.Input() that will only ask for variable values that are not set.
8 lines
117 B
HCL
8 lines
117 B
HCL
variable "foo" {}
|
|
variable "bar" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${var.foo}"
|
|
bar = "${var.bar}"
|
|
}
|