-
Notifications
You must be signed in to change notification settings - Fork 2
/
storagedeploy.json
40 lines (39 loc) · 974 Bytes
/
storagedeploy.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
38
39
40
{
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json",
"contentVersion": "1.0.0.0",
"parameters": {
// Required parameters
"appStorageAccountName": {
"type": "string"
},
// Parameters with defaults
"storageAccountType": {
"type": "string",
"defaultValue": "Standard_GRS",
"allowedValues": [
"Standard_LRS",
"Standard_GRS",
"Standard_ZRS"
],
"metadata": {
"description": "Storage Account type"
}
},
"location": {
"type": "string",
"defaultValue": "West Europe"
},
},
"resources": [
// Storage
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('appStorageAccountName')]",
"apiVersion": "2015-05-01-preview",
"location": "[parameters('location')]",
"properties": {
"accountType": "[parameters('storageAccountType')]"
}
}
]
}