We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 106c4fc commit e9cb592Copy full SHA for e9cb592
1 file changed
terraform-infrastructure/main.tf
@@ -290,6 +290,12 @@ resource "azurerm_linux_web_app" "app" {
290
always_on = false
291
http2_enabled = true
292
minimum_tls_version = "1.2"
293
+ application_stack {
294
+ docker_image_name = "zava-chat-app:latest"
295
+ docker_registry_url = "https://${local.registry_name}.azurecr.io"
296
+ docker_registry_username = azurerm_container_registry.acr.admin_username
297
+ docker_registry_password = azurerm_container_registry.acr.admin_password
298
+ }
299
}
300
301
app_settings = {
0 commit comments