This storage module is used for non critical business data.
Parameter name | Required | Description |
---|---|---|
storageAccountName | Yes | Storage account name must be between 3 and 24 characters in length and use numbers and lower-case letters only. |
skuName | No | Please talk with the subscription owner if a different SKU is needed |
location | No | |
tags | No | Please specify here an object that includes the environment and the owner of the corresponding resource. See the example |
Storage account name must be between 3 and 24 characters in length and use numbers and lower-case letters only.
Please talk with the subscription owner if a different SKU is needed
-
Default value:
Standard_LRS
-
Allowed values:
Standard_LRS
,Standard_GRS
,Standard_RAGRS
,Standard_ZRS
,Premium_LRS
- Default value:
[resourceGroup().location]
Please specify here an object that includes the environment and the owner of the corresponding resource. See the example
- Default value:
@{env=dev; owner=foo}
Name | Type | Description |
---|---|---|
name | string | Name of the storage account created. Can be used to reference the resource |
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"metadata": {
"template": "base/.generated/arm/storage.json"
},
"parameters": {
"storageAccountName": {
"value": ""
},
"skuName": {
"value": "Standard_LRS"
},
"location": {
"value": "[resourceGroup().location]"
},
"tags": {
"value": {
"env": "dev",
"owner": "bar"
}
}
}
}