opentofu/internal/tofu/testdata/plan-ignore-changes-sensitive/ignore-changes-sensitive.tf
2023-09-20 15:16:53 +03:00

12 lines
135 B
HCL

variable "foo" {
sensitive = true
}
resource "aws_instance" "foo" {
ami = var.foo
lifecycle {
ignore_changes = [ami]
}
}