mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-19 01:00:39 -04:00
This also unearthed that the marking must happen earlier in the eval_diff in order to produce a valid plan (so that the planned marked value matches the marked config value)
12 lines
187 B
HCL
12 lines
187 B
HCL
terraform {
|
|
experiments = [sensitive_variables]
|
|
}
|
|
|
|
variable "sensitive_var" {
|
|
default = "foo"
|
|
sensitive = true
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = var.sensitive_var
|
|
} |