Files
opentf/internal/tofu/testdata/validate-variable-custom-validations-child-sensitive/validate-variable-custom-validations.tf
2023-09-20 15:16:53 +03:00

11 lines
118 B
HCL

variable "test" {
sensitive = true
default = "nope"
}
module "child" {
source = "./child"
test = var.test
}