You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
463 B

  1. {
  2. "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  3. "contentVersion": "1.0.0.0",
  4. "parameters": {
  5. },
  6. "variables": {
  7. },
  8. "resources": [
  9. {
  10. "type": "Microsoft.Storage/storageAccounts",
  11. "name": "{{storageAccountName}}",
  12. "location": "[resourceGroup().location]",
  13. "apiVersion": "{{apiVersion}}",
  14. "properties": {
  15. "accountType": "{{storageAccountType}}"
  16. }
  17. }
  18. ]
  19. }