mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-19 01:00:39 -04: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
|
|
}
|