mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
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
|
|
}
|