terraform/internal/command/testdata/apply-sensitive-variable/main.tf
Liam Cervante 00d680d819
apply: include sensitive metadata when comparing changed input values (#37582)
* apply: include sensitive metadata when comparing changed input values

* correct changelog entry
2025-09-10 11:11:31 +02:00

9 lines
115 B
HCL

variable "shadow" {
type = string
sensitive = true
}
output "foo" {
value = var.shadow
sensitive = true
}