📅  最后修改于: 2022-03-11 14:58:43.548000             🧑  作者: Mango
resource "aws_instance" "example" {
# ...
lifecycle {
ignore_changes = [
# Ignore changes to tags, e.g. because a management agent
# updates these based on some ruleset managed elsewhere.
tags,
]
}
}