mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-11 14:58:32 -05:00
* apply: include sensitive metadata when comparing changed input values * correct changelog entry
9 lines
115 B
HCL
9 lines
115 B
HCL
variable "shadow" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
output "foo" {
|
|
value = var.shadow
|
|
sensitive = true
|
|
}
|