-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazuredeploy.json
37 lines (37 loc) · 1.18 KB
/
azuredeploy.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
36
37
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"consumptionAppPlanName": {
"type": "string",
"defaultValue": "",
"metadata": {
"description": "The name of the azure function consumption app service plan."
}
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "The location in which the resource should be deployed."
}
}
},
"variables": { },
"resources": [
{
"type": "Microsoft.Web/serverfarms",
"apiVersion": "2018-02-01",
"name": "[parameters('consumptionAppPlanName')]",
"location": "[parameters('location')]",
"sku": {
"name": "Y1",
"tier": "Dynamic"
},
"properties": {
"name": "[parameters('consumptionAppPlanName')]",
"computeMode": "Dynamic"
}
}
]
}