Skip to content

Commit

Permalink
feat(web-app): add storage account connection string to web app setti…
Browse files Browse the repository at this point in the history
…ngs, and docker image CI
  • Loading branch information
pbullhove committed Oct 3, 2024
1 parent 948616c commit 16adc73
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions terraform/web_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ resource "azurerm_linux_web_app" "web_app" {
}
}

app_settings = {
"ConnectionStrings:BlobStorage" : "DefaultEndpointsProtocol=https;AccountName=${azurerm_storage_account.data_lake.name};AccountKey=${azurerm_storage_account.data_lake.primary_access_key};EndpointSuffix=core.windows.net"
"DOCKER_ENABLE_CI" = true
}

identity {
type = "SystemAssigned"
}
Expand Down

0 comments on commit 16adc73

Please sign in to comment.