diff --git a/modules/container_app/container_app.tf b/modules/container_app/container_app.tf index 4a5ef05..58f2f9b 100644 --- a/modules/container_app/container_app.tf +++ b/modules/container_app/container_app.tf @@ -14,7 +14,7 @@ resource "azurerm_container_app" "container_app_app" { content { command = init_container.value.command != null ? [init_container.value.command] : [] cpu = init_container.value.cpu - image = init_container.value.image + image = "${init_container.value.image}" memory = init_container.value.memory name = init_container.value.name @@ -46,7 +46,7 @@ resource "azurerm_container_app" "container_app_app" { content { command = container.value.command != null ? [container.value.command] : [] cpu = container.value.cpu - image = container.value.image + image = "${container.value.image}" memory = container.value.memory name = container.value.name @@ -96,7 +96,7 @@ resource "azurerm_container_app" "container_app_app" { } registry { - server = var.registry_server_name + server = "${var.registry_server_name}" username = var.registry_username password_secret_name = var.registry_password_secret_name }