📜  terraform 生命周期规则忽略 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:43.548000             🧑  作者: Mango

代码示例1
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,
    ]
  }
}