updating modules

This commit is contained in:
2025-08-24 09:57:23 -05:00
parent 56f1583089
commit 928cf9c733
2 changed files with 6 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ resource "azurerm_container_app" "container_app_app" {
}
lifecycle {
ignore_changes = [ template[0].container[*].image, template[0].init_container[*].image, registry.server ]
ignore_changes = var.ignore_changes
}
}

View File

@@ -46,6 +46,11 @@ variable "domain_name" {
type = string
}
variable "ignore_changes" {
default = []
type = list(string)
}
variable "ingress_external_enabled" {
default = false
type = bool