Skip to content

Commit

Permalink
ER: Ignore docker image changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny-sidhu-and committed Oct 10, 2023
1 parent 16f2247 commit 89367f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform-azure/terraform-azure-app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ resource "azurerm_container_group" "app_worker" {
subnet_ids = [var.app_worker_subnet_id]

lifecycle {
ignore_changes = [tags]
ignore_changes = [tags, container.0.image]
}

#checkov:skip=CKV2_AZURE_28:Using VNet
Expand Down
2 changes: 1 addition & 1 deletion terraform-azure/terraform-azure-review/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ resource "azurerm_linux_web_app" "review-app" {
}

lifecycle {
ignore_changes = [tags]
ignore_changes = [tags, site_config.0.application_stack]
}

#checkov:skip=CKV_AZURE_13:App uses built-in authentication
Expand Down

0 comments on commit 89367f7

Please sign in to comment.