ARM Templates continued
- Adding sql server to the arm template
- Refer Here for the sql server added
- Exercise: Create a sql database by using existing template.
- Refer Here for the changeset
- Now lets try to deploy the arm template using azure cli
# Create a resource group
az group create --location eastus --name ntiercli
# Create a deployment
az group deployment create --resource-group ntiercli --name clideploy1 --mode Complete --template-file .\azuredeploy.json
# For future releases
az deployment group create --resource-group ntiercli --name clideploy1 --mode Complete --template-file .\azuredeploy.json
# To delete the deployment
az group delete --name ntiercli
