Skip to content

Commit 79e7a4a

Browse files
committed
update
1 parent cc6bb30 commit 79e7a4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-resource-manager/templates/deployment-script-template-configure-dev.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The following Azure Resource Manager template (ARM template) creates a container
109109
"apiVersion": "2022-09-01",
110110
"name": "[format('{0}/default/{1}', variables('storageAccountName'), variables('fileShareName'))]",
111111
"dependsOn": [
112-
"storageAccount"
112+
"[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]"
113113
]
114114
},
115115
{
@@ -296,7 +296,7 @@ The following ARM template creates a container instance and a file share, and th
296296
"apiVersion": "2022-09-01",
297297
"name": "[format('{0}/default/{1}', variables('storageAccountName'), variables('fileShareName'))]",
298298
"dependsOn": [
299-
"storageAccount"
299+
"[resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName'))]"
300300
]
301301
},
302302
{

0 commit comments

Comments
 (0)