Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Commit

Permalink
Ignore tags on new user assigned identity
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Aug 30, 2024
1 parent c732e6d commit 3c2af32
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions operations/template/app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ resource "azurerm_user_assigned_identity" "key_vault_identity" {
location = data.azurerm_resource_group.group.location

name = "sftp-key-vault-identity-${var.environment}"

lifecycle {
ignore_changes = [
# Ignore changes to tags because the CDC sets these automagically
tags,
]
}
}

# Create the staging service plan
Expand Down

0 comments on commit 3c2af32

Please sign in to comment.