Created
August 6, 2018 15:00
-
-
Save kasunkv/4a423dd4ef7baa037f06c9424c69babb to your computer and use it in GitHub Desktop.
Create Resource Group using ARM Template.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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