Sha256: 306fa30fc81d86a3a87d05ed551b262f320ca646d794f7d2a97303667b01a76b

Contents?: true

Size: 1018 Bytes

Versions: 3

Compression:

Stored size: 1018 Bytes

Contents

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.1",
    "parameters": {
        "storageAccountName": {
            "type": "string",
            "metadata": {
                "description": "Name of the storage account that should be used to store the machine disks"
            },
            "defaultValue": "<%= @storage_account %>"
        }
    },
    "variables": {
        "sa": {
            "name": "[parameters('storageAccountName')]",
            "type": "Standard_LRS"
        },
        "location": "[resourceGroup().location]"
    },
    "resources": [
        {
            "type": "Microsoft.Storage/storageAccounts",
            "name": "[variables('sa').name]",
            "apiVersion": "2015-06-15",
            "location": "[variables('location')]",
            "properties": {
                "accountType": "[variables('sa').type]"
            }
        }
    ],
    "outputs": {}
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wombat-cli-0.5.0 generator_files/templates/arm.tidy.json.erb
wombat-cli-0.4.3 generator_files/templates/arm.tidy.json.erb
wombat-cli-0.4.2 generator_files/templates/arm.tidy.json.erb