mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-27 00:46:25 -06:00
f142978456
ignore_changes For #7855
8 lines
98 B
HCL
8 lines
98 B
HCL
resource "aws_instance" "foo" {
|
|
vars = "foo"
|
|
|
|
lifecycle {
|
|
ignore_changes = ["vars"]
|
|
}
|
|
}
|