-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresourceGroup.json
35 lines (35 loc) · 886 Bytes
/
resourceGroup.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.8.9.13224",
"templateHash": "13699473890445434202"
}
},
"parameters": {
"resourceGroupName": {
"type": "string",
"defaultValue": "OOA-rg",
"metadata": {
"description": "Name for the resource group."
}
},
"resourceGroupLocation": {
"type": "string",
"defaultValue": "westus",
"metadata": {
"description": "Location for all resources."
}
}
},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2021-04-01",
"name": "[parameters('resourceGroupName')]",
"location": "[parameters('resourceGroupLocation')]"
}
]
}