We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9209f0 commit 318954aCopy full SHA for 318954a
1 file changed
infrastructure/modules/function-app/main.tf
@@ -75,6 +75,11 @@ resource "azurerm_linux_function_app" "function_app" {
75
storage_uses_managed_identity = var.storage_uses_managed_identity
76
77
tags = var.tags
78
+
79
+ # To prevent Terraform removing 'hidden-link:' tagging created automatically by AzureRM
80
+ lifecycle {
81
+ ignore_changes = [tags]
82
+ }
83
}
84
85
/* --------------------------------------------------------------------------------------------------
0 commit comments