Skip to content

Commit

Permalink
Update container_apps.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
benchiverton committed Jun 26, 2024
1 parent cc64bb8 commit f21a9ef
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion terraform/instance/container_apps.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,12 @@ resource "azurerm_container_app" "monitoring" {
registry {
server = "onlinestorecontainerregistry.azurecr.io"
username = var.acr_username
password_secret_name = var.acr_password
password_secret_name = "acr_password"
}

secret {
name = "acr_password"
value = var.acr_password
}

lifecycle {
Expand Down

0 comments on commit f21a9ef

Please sign in to comment.