0

ストレージ アカウントを作成するための ARM テンプレートは次のとおりです。

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "storageAccountType": {
            "type": "string",
            "defaultValue": "Standard_LRS",
            "allowedValues": [
                "Standard_LRS",
                "Standard_ZRS",
                "Standard_GRS",
                "Standard_RAGRS",
                "Premium_LRS"
            ],
            "metadata": {
                "description": "Describes the storage type."
            }
        }
    },
    "resources": [
        ................
        {
            "apiVersion": "2015-06-15",
            "name": "[variables('storageName')]",
            "type": "Microsoft.Storage/storageAccounts",
            "location": "[resourceGroup().location]",
            "dependsOn": [ ],
            "tags": {
                "displayName": "storage"
            },
            "properties": {
                "accountType": "[parameters('storageAccountType')]"
            }
        }
    ]
}

完全に正常に動作しますが、アカウント タイプ Standard_RAGRS を使用して geo レプリケーションを実行しようとすると、エラーが返されます。

「..... という名前のストレージ アカウントは、サブスクリプションの下に既に存在します。」

私は何を間違っていますか?

ありがとう

4

2 に答える 2

0

一部のプロパティについては、後続のデプロイでリソース プロパティを更新できますが、これはリソースとプロパティによって異なります。残念ながら、許可されているものの適切なリストを知りません。

そのエラーは改善される可能性があるようです...

于 2016-04-11T17:32:48.490 に答える