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
@@ -75,7 +75,9 @@ In this section, you create a storage account using the Azure portal. Before you
75
75
76
76
## Edit and deploy the template
77
77
78
-
In this section, you open the saved template from the template library, edit the template inside the portal, and deploy the revised template. To edit a more complex template, consider using Visual Studio Code which provides richer edit functionalities.
78
+
In this section, you open the saved template from the template library, edit the template inside the portal, and deploy the revised template. To edit a more complex template, consider using [Visual Studio Code](./resource-manager-quickstart-create-templates-use-visual-studio-code.md) which provides richer edit functionalities.
79
+
80
+
Azure requires that each Azure service has a unique name. The deployment fails if you enter a storage account name that already exists. To avoid this issue, you can use a template function call uniquestring() to generate a unique storage account name.
79
81
80
82
1. In the Azure portal, select **All services** from the left menu, enter **template** in the filter box, and then select **Template (PREVIEW)**.
81
83
@@ -159,7 +161,7 @@ In this section, you open the saved template from the template library, edit the
159
161
8. Select **Deploy**.
160
162
9. Enter the following values:
161
163
162
-
- **Subsription**: select your Azure subscription.
164
+
- **Subscription**: select your Azure subscription.
163
165
- **Resource group**: name your resource group with a unique name.
164
166
- **Location**: select a location for the resource group.
165
167
- **Location**: select a location for the storage account. You can use the same location as the resource group.
@@ -175,6 +177,14 @@ In this section, you open the saved template from the template library, edit the
175
177
10. Select **Purchase**.
176
178
11. Select the bell icon (notifications) from the top of the screen to see the deployment status.
You can see the deployment status was successful, and there is only one storage account in the resource group. The storage account name is a unique string generated by the template. To learn more about using Azure storage accounts, see [Quickstart: Upload, download, and list blobs using the Azure portal](../storage/blobs/storage-quickstart-blobs-portal.md).
187
+
178
188
## Clean up resources
179
189
180
190
When the Azure resources are no longer needed, clean up the resources you deployed by deleting the resource group.
0 commit comments