ストレージ アカウントを作成するための 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 レプリケーションを実行しようとすると、エラーが返されます。
「..... という名前のストレージ アカウントは、サブスクリプションの下に既に存在します。」
私は何を間違っていますか?
ありがとう