Created
June 9, 2019 10:05
-
-
Save kurtmkurtm/2f53a0b9016a8213216becd8738455d6 to your computer and use it in GitHub Desktop.
Storage Account ARM Template - from https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-manager-quickstart-create-templates-use-the-portal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"location": { | |
"type": "string" | |
}, | |
"accountType": { | |
"type": "string" | |
}, | |
"kind": { | |
"type": "string" | |
}, | |
"accessTier": { | |
"type": "string" | |
}, | |
"supportsHttpsTrafficOnly": { | |
"type": "bool" | |
} | |
}, | |
"variables": { | |
"storageAccountName": "[concat(uniqueString(subscription().subscriptionId), 'storage')]" | |
}, | |
"resources": [ | |
{ | |
"name": "[variables('storageAccountName')]", | |
"type": "Microsoft.Storage/storageAccounts", | |
"apiVersion": "2018-07-01", | |
"location": "[parameters('location')]", | |
"properties": { | |
"accessTier": "[parameters('accessTier')]", | |
"supportsHttpsTrafficOnly": "[parameters('supportsHttpsTrafficOnly')]" | |
}, | |
"dependsOn": [ | |
], | |
"sku": { | |
"name": "[parameters('accountType')]" | |
}, | |
"kind": "[parameters('kind')]" | |
} | |
], | |
"outputs": { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment