mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
e1a41daf9b
Passing a sensitive value as a module input variable should preserve its sensitivity for the plan.
8 lines
86 B
HCL
8 lines
86 B
HCL
variable "foo" {
|
|
type = string
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = var.foo
|
|
}
|