Skip to content

Commit 1068a1e

Browse files
committed
Revised Alt Text
1 parent 46295b9 commit 1068a1e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/azure-resource-manager/templates/quickstart-create-templates-use-the-portal.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,29 +26,29 @@ Rather than manually building an entire ARM template, let's start by retrieving
2626
1. In a web browser, go to the [Azure portal](https://portal.azure.com) and sign in.
2727
1. From the Azure portal search bar, search for **deploy a custom template** and then select it from the available options.
2828

29-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/search-custom-template.png" alt-text="Search for Custom Template":::
29+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/search-custom-template.png" alt-text="Screenshot of Search for Custom Template.":::
3030

3131
1. For **Template** source, notice that **Quickstart template** is selected by default. You can keep this selection. In the drop-down, search for *quickstarts/microsoft.storage/storage-account-create* and select it. After finding the quickstart template, select **Select template.**
3232

33-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/select-custom-template.png" alt-text="Select Quickstart Template":::
33+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/select-custom-template.png" alt-text="Screenshot of Select Quickstart Template.":::
3434

3535
1. In the next blade, you provide custom values to use for the deployment.
3636

3737
For **Resource group**, select **Create new** and provide *myResourceGroup* for the name. You can use the default values for the other fields. When you've finished providing values, select **Review + create**.
3838

39-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/input-fields-template.png" alt-text="Input Fields for Template":::
39+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/input-fields-template.png" alt-text="Screenshot for Input Fields for Template.":::
4040

4141
1. The portal validates your template and the values you provided. After validation succeeds, select **Create** to start the deployment.
4242

43-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/template-validation.png" alt-text="Validation and create":::
43+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/template-validation.png" alt-text="Screenshot for Validation and create.":::
4444

4545
1. Once your validation has passed, you'll see the status of the deployment. When it completes successfully, select **Go to resource** to see the storage account.
4646

47-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/deploy-success.png" alt-text="Deployment Succeeded Notification":::
47+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/deploy-success.png" alt-text="Screenshot for Deployment Succeeded Notification.":::
4848

4949
1. From this screen, you can view the new storage account and its properties.
5050

51-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-storage-account.png" alt-text="View Deployment Page":::
51+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-storage-account.png" alt-text="Screenshot for View Deployment Page.":::
5252

5353
## Edit and deploy the template
5454

@@ -60,11 +60,11 @@ In this section, let's suppose you have an ARM template that you want to deploy
6060

6161
1. This time, select **Build your own template in the editor**.
6262

63-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/build-own-template.png" alt-text="Build your own template":::
63+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/build-own-template.png" alt-text="Screenshot for Build your own template.":::
6464

6565
1. You see a blank template.
6666

67-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/blank-template.png" alt-text="Blank Template":::
67+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/blank-template.png" alt-text="Screenshot for Blank Template.":::
6868

6969
1. Replace the blank template with the following template. It deploys a virtual network with a subnet.
7070

@@ -143,25 +143,25 @@ In this section, let's suppose you have an ARM template that you want to deploy
143143

144144
1. When the deployment completes, you see the status of the deployment. This time select the name of the resource group.
145145

146-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-second-deployment.png" alt-text="View second deployment":::
146+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-second-deployment.png" alt-text="Screenshot for View second deployment.":::
147147

148148
1. Notice that your resource group now contains a storage account and a virtual network.
149149

150-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-resource-group.png" alt-text="View Storage Account and Virtual Network":::
150+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-resource-group.png" alt-text="Screenshot for View Storage Account and Virtual Network.":::
151151

152152
## Export a custom template
153153

154154
Sometimes the easiest way to work with an ARM template is to have the portal generate it for you. The portal can create an ARM template based on the current state of your resource group.
155155

156156
1. In your resource group, select **Export template**.
157157

158-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/export-template.png" alt-text="Export Template":::
158+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/export-template.png" alt-text="Screenshot for Export Template.":::
159159

160160
1. The portal generates a template for you based on the current state of the resource group. Notice that this template isn't the same as either template you deployed earlier. It contains definitions for both the storage account and virtual network, along with other resources like a blob service that was automatically created for your storage account.
161161

162162
1. To save this template for later use, select **Download**.
163163

164-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/download-template.png" alt-text="Download exported template":::
164+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/download-template.png" alt-text="Screenshot for Download exported template.":::
165165

166166
You now have an ARM template that represents the current state of the resource group. This template is auto-generated. Before using the template for production deployments, you may want to revise it, such as adding parameters for template reuse.
167167

0 commit comments

Comments
 (0)