You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/templates/deployment-script-template.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Use deployment scripts in templates | Microsoft Docs
3
3
description: Use deployment scripts in Azure Resource Manager templates.
4
4
ms.custom: devx-track-arm-template
5
5
ms.topic: conceptual
6
-
ms.date: 12/12/2023
6
+
ms.date: 04/09/2024
7
7
---
8
8
9
9
# Use deployment scripts in ARM templates
@@ -660,7 +660,7 @@ The identity that your deployment script uses needs to be authorized to work wit
660
660
With Microsoft.Resources/deploymentScripts version 2023-08-01, you can run deployment scripts in private networks with some additional configurations.
661
661
662
662
- Create a user-assigned managed identity, and specify it in the `identity` property. To assign the identity, see [Identity](#identity).
663
-
- Create a storage account, and specify the deployment script to use the existing storage account. To specify an existing storage account, see [Use existing storage account](#use-existing-storage-account). Some additional configuration is required for the storage account.
663
+
- Create a storage account with [`allowSharedKeyAccess`](/azure/templates/microsoft.storage/storageaccounts) set to `true`, and specify the deployment script to use the existing storage account. To specify an existing storage account, see [Use existing storage account](#use-existing-storage-account). Some additional configuration is required for the storage account.
664
664
665
665
1. Open the storage account in the [Azure portal](https://portal.azure.com).
666
666
1. From the left menu, select **Access Control (IAM)**, and then select the **Role assignments** tab.
@@ -708,7 +708,7 @@ The following ARM template shows how to configure the environment for running a
708
708
"resources": [
709
709
{
710
710
"type": "Microsoft.Network/virtualNetworks",
711
-
"apiVersion": "2023-05-01",
711
+
"apiVersion": "2023-09-01",
712
712
"name": "[parameters('vnetName')]",
713
713
"location": "[parameters('location')]",
714
714
"properties": {
@@ -761,15 +761,16 @@ The following ARM template shows how to configure the environment for running a
0 commit comments