Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created August 6, 2018 15:00
Show Gist options
  • Save kasunkv/4a423dd4ef7baa037f06c9424c69babb to your computer and use it in GitHub Desktop.
Save kasunkv/4a423dd4ef7baa037f06c9424c69babb to your computer and use it in GitHub Desktop.
Create Resource Group using ARM Template.
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"rgLocation": {
"type": "string",
"defaultValue": "Southeast Asia"
},
"rgName": {
"type": "string",
"defaultValue": "myResourceGroup"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "[parameters('rgLocation')]",
"name": "[parameters('rgName')]"
}
],
"outputs": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment