From 8a7f7e2c4d4a381479c4cd3a88a76507ca24f835 Mon Sep 17 00:00:00 2001 From: SamHodgkinson <9842003+samhodgkinson@users.noreply.github.com> Date: Thu, 11 Apr 2019 13:44:14 +0100 Subject: [PATCH] Update best-practices.md Extra Bracket within the string. "storageUri": "[reference(resourceId(parameters('storageAccountResourceGroup'), 'Microsoft.Storage/storageAccounts', variables('diagStorageAccountName')), '2017-10-01').primaryEndpoints['blob']]" --- 1-CONTRIBUTION-GUIDE/best-practices.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-CONTRIBUTION-GUIDE/best-practices.md b/1-CONTRIBUTION-GUIDE/best-practices.md index 32f9a150704e..bcccea21d926 100644 --- a/1-CONTRIBUTION-GUIDE/best-practices.md +++ b/1-CONTRIBUTION-GUIDE/best-practices.md @@ -194,7 +194,7 @@ The following example shows how to use the reference function for the `storageUr "diagnosticsProfile": { "bootDiagnostics": { "enabled": true, - "storageUri": "[reference(resourceId(parameters('storageAccountResourceGroup'), 'Microsoft.Storage/storageAccounts', variables('diagStorageAccountName'))), '2017-10-01').primaryEndpoints['blob']]" + "storageUri": "[reference(resourceId(parameters('storageAccountResourceGroup'), 'Microsoft.Storage/storageAccounts', variables('diagStorageAccountName')), '2017-10-01').primaryEndpoints['blob']]" } } ```