Skip to content

Commit

Permalink
Ignore annotation changes (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
andbyrne authored Jul 2, 2024
1 parent 1907ab6 commit 2bd7fb0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions modules/terraform-aci-l3out/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ resource "aci_rest_managed" "l3extOut" {
targetDscp = var.target_dscp
enforceRtctrl = join(",", concat(var.export_route_control_enforcement == true ? ["export"] : [], var.import_route_control_enforcement == true ? ["import"] : []))
}

lifecycle {
ignore_changes = [annotation]
}
}

resource "aci_rest_managed" "ospfExtP" {
Expand Down Expand Up @@ -59,6 +63,10 @@ resource "aci_rest_managed" "l3extRsEctx" {
content = {
tnFvCtxName = var.vrf
}

lifecycle {
ignore_changes = [annotation]
}
}

resource "aci_rest_managed" "rtctrlProfile_import" {
Expand Down

0 comments on commit 2bd7fb0

Please sign in to comment.