wls-eng / arm-oraclelinux-wls

Microsoft Azure ARM Templates to create Oracle Linux VM with pre-installed Weblogic Server
Apache License 2.0
0 stars 7 forks source link

Consider upgrading to StoregeV2 #316

Open edburns opened 3 years ago

edburns commented 3 years ago

Consider this JSON

        {
            "type": "Microsoft.Storage/storageAccounts",
            "apiVersion": "${azure.apiVersion2}",
            "name": "[variables('name_storageAccount')]",
            "location": "[parameters('location')]",
            "sku": {
                "name": "[variables('const_storageAccountType')]"
            },
            "kind": "Storage",
            "properties": {
                "supportsHttpsTrafficOnly": false
            },
            "dependsOn": [
                "[variables('name_networkSecurityGroup')]"
            ]
        },

Note the value of the kind property. We should consider upgrading. See Upgrade to a general-purpose v2 storage account.

General-purpose v2 storage accounts support the latest Azure Storage features and incorporate all of the functionality of general-purpose v1 and Blob storage accounts. General-purpose v2 accounts are recommended for most storage scenarios. General-purpose v2 accounts deliver the lowest per-gigabyte capacity prices for Azure Storage, as well as industry-competitive transaction prices. General-purpose v2 accounts support default account access tiers of hot or cool and blob level tiering between hot, cool, or archive.

edburns commented 3 years ago

AB#1230802