Creation of Azure Webapp using ARM Templates
Step1: ARM Template for creating Azure Webapp
{ "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": {}, "functions": [], "variables": {}, "resources": [ { "type": "Microsoft.Web/serverfarms", "apiVersion": "2022-09-01", "name": "plansrinivas2024", "location": "[resourceGroup().location]", "sku":{ "name" :"F1", "capacity":1 }, "properties": { "name" : "plansrinivas2024" } }, { "type": "Microsoft.Web/sites", "apiVersion": "2022-09-01", "name": "newappsrinivas2024", "location": "[resourceGroup().location]", "properties": { "name" : "newappsrinivas2024", "serverFarmId" : "[resourceId('Microsoft.Web/serverfarms','plansrinivas2024')]" }, "dependsOn": [ "[resourceId('Microsoft.Web/serverfarms','plansrinivas2024')]" ] } ], "outputs": {} } Step2:Go to portal.azure.com and create a new resource group as arm-template1
Step3:Search with template deployment in azure portal and select the option highlighted in the picture
Step4: Select the resource group created earlier then review and create
Step5: Select the custom template
Step6: Paste the ARM Template code
Step7: Save the plan, review and create
Step8: Go the resource group arm-template1 selected for the arm template
Step9: Delete the resource group: arm-template1 created for this exercise for avoiding expenses
References :
Conclusion : Created a Azure webapp using ARM Template
💬 If you enjoyed reading this blog post and found it informative, please take a moment to share your thoughts by leaving a review and liking it 😀 and follow me in dev.to , linkedin








Top comments (0)