-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeploy-ResourceGroup.json
More file actions
38 lines (38 loc) · 1.12 KB
/
Deploy-ResourceGroup.json
File metadata and controls
38 lines (38 loc) · 1.12 KB
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
36
37
38
{
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"subscriptionID": {
"type": "string",
"defaultValue": "01444bd5-9d4b-4ff6-a101-94d604a66b1c",
"metadata": {
"description": "SQLServerPerformance"
}
},
"resourceGroupName": {
"type": "string",
"metadata": {
"description": "The name of the Resource Group."
}
},
"location": {
"type": "string",
"metadata": {
"description": "Location/Region for the deployment."
}
}
},
"functions": [],
"variables": {},
"resources": [
{
"name": "[parameters('resourceGroupName')]",
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2022-02-01",
"managedBy": "[parameters('subscriptionID')]",
"location": "[parameters('location')]",
"tags": {}
}
],
"outputs": {}
}