You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module provisions the essential backend services required for the application. It includes a Cosmos DB instance for distributed caching, a secure SQL Server and database for relational data, and an Azure Key Vault for managing secrets using role-based access control. A premium-tier Service Bus is configured to enable reliable messaging between application components. Additionally, a storage account with a blob container provides scalable storage for static resources, while a second storage account is designated for use by the Function App as Azure WebJob storage. All services are deployed with public network access disabled where applicable, ensuring a secure and private infrastructure.
200
200
201
201
```bash
@@ -221,6 +221,8 @@ App Service Environment must always be deployed in its own subnet in the enterpr
221
221
echo$RESOURCES_CONTAINER_NAME
222
222
export SERVICEBUS_NAMESPACE_NAME=$(az deployment group show -g rg-app-service-environments-centralus -n services --query properties.outputs.serviceBusName.value -o tsv)
223
223
echo$SERVICEBUS_NAMESPACE_NAME
224
+
export AMR_NAME=$(az deployment group show -g rg-app-service-environments-centralus -n services --query properties.outputs.amrName.value -o tsv)
225
+
echo$AMR_NAME
224
226
```
225
227
226
228
### 9. Uploads image to the storage account
@@ -241,7 +243,7 @@ App Service Environment must always be deployed in its own subnet in the enterpr
241
243
# [This takes about thirty minutes to run.]
242
244
# For HA change zoneRedundant to true
243
245
az deployment group create -g rg-app-service-environments-centralus --template-file templates/sites.bicep -n sites --parameters aseName=$ASE_NAME \
0 commit comments