mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-28 17:34:24 -06:00
8 lines
105 B
Terraform
8 lines
105 B
Terraform
|
variable "foo" {}
|
||
|
|
||
|
resource aws_instance "web" {
|
||
|
lifecycle {
|
||
|
ignore_changes = ["${var.foo}"]
|
||
|
}
|
||
|
}
|