mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
8 lines
118 B
Terraform
8 lines
118 B
Terraform
|
resource "aws_instance" "foo" {
|
||
|
required_field = "set"
|
||
|
|
||
|
lifecycle {
|
||
|
ignore_changes = ["required_field"]
|
||
|
}
|
||
|
}
|