This template deploys an Azure Cosmos DB account, an App Service Plan, and creates a Web App in the App Service Plan. It also adds two Application settings to the Web App that reference the Azure Cosmos DB account endpoint. This way solutions deployed to the Web App can connect to the Azure Cosmos DB account endpoint using those settings.
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
databaseAccountName | The Azure Cosmos DB database account name. |
appSvcPlanName | The name of the App Service Plan that will host the Web App. |
svcPlanSize | The instance size of the App Service Plan. |
svcPlanSku | The pricing tier of the App Service plan. |
webAppName | The name of the Web App. |
location | Location for all resources. |
Use the template
PowerShell
New-AzureRmResourceGroupDeployment -Name <deployment-name> -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-documentdb-webapp/azuredeploy.jsonInstall and configure Azure PowerShell
Command line
azure config mode armInstall and Configure the Azure Cross-Platform Command-Line Interface
azure group deployment create <my-resource-group> <my-deployment-name> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-documentdb-webapp/azuredeploy.json