opentofu/terraform/testdata/plan-variable-sensitivity-module/child/main.tf
Alisdair McDiarmid e1a41daf9b terraform: Test sensitive values in module inputs
Passing a sensitive value as a module input variable should preserve its
sensitivity for the plan.
2020-09-16 16:54:04 -04:00

8 lines
86 B
HCL

variable "foo" {
type = string
}
resource "aws_instance" "foo" {
foo = var.foo
}