- Hands-On Cloud Solutions with Azure
- Greg Leonardo
- 44字
- 2021-06-10 19:44:41
Deploy-Azure-WebsiteAndDatabase.parameters.json
In our parameters file, we provide the hosting plan name and a username and password for the SQL instance:
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"hostingPlanName": {
"value": "Demo_Hosting_Plan"
},
"administratorLogin": {
"value": "sqlAdmin"
},
"databaseName": {
"value": "Pas@word123"
}
}
}