Azure-docs: Storage Account creation section needs amendments

Created on 18 Apr 2019  Â·  3Comments  Â·  Source: MicrosoftDocs/azure-docs

I was able to use this template but needed to make some amendments, as the property "accountType" for "sku" no longer exists. Also, I needed to use a newer API version in order for this to succeed:

Original:

{
"apiVersion": "2015-05-01-preview",
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('applicationDiagnosticsStorageAccountName')]",
"location": "[parameters('computeLocation')]",
"sku": {
"accountType": "[parameters('applicationDiagnosticsStorageAccountType')]"
},
"tags": {
"resourceType": "Service Fabric",
"clusterName": "[parameters('clusterName')]"
}
},

Fixed:

{
"apiVersion": "2018-07-01",
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('applicationDiagnosticsStorageAccountName')]",
"location": "[parameters('computeLocation')]",
"sku": {
"name": "[parameters('applicationDiagnosticsStorageAccountType')]"
"tier": "standard"
},
"tags": {
"resourceType": "Service Fabric",
"clusterName": "[parameters('clusterName')]"
}
},


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

cxp doc-bug service-fabrisvc triaged

All 3 comments

Thanks for the feedback! I have assigned the issue to the content author to investigate further and update the document as appropriate.

CC @aljo-microsoft

@MicahMcKittrick-MSFT @AdamSharif-MSFT feel free to edit the doc with the change :)

@AdamSharif-MSFT I submitted a fix. Once the PR merges the changes will go live in a few hours.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

behnam89 picture behnam89  Â·  3Comments

monteledwards picture monteledwards  Â·  3Comments

JeffLoo-ong picture JeffLoo-ong  Â·  3Comments

bdcoder2 picture bdcoder2  Â·  3Comments

mrdfuse picture mrdfuse  Â·  3Comments