Skip to content

Commit bf84552

Browse files
committed
Minor Changes
1 parent d95413a commit bf84552

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed
23.1 KB
Loading

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

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
2424

2525
## Retrieve a custom template
2626

27-
"Rather than manually building an entire ARM template, let's start by retrieving a pre-built template that accomplishes our goal. The [Azure Quickstart Templates repo](https://github.com/Azure/azure-quickstart-templates) repo contains a large collection of templates that deploy common scenarios. The portal makes it easy for you find and use templates from this repo. You can save the template and reuse it later."
27+
Rather than manually building an entire ARM template, let's start by retrieving a pre-built template that accomplishes our goal. The [Azure Quickstart Templates repo](https://github.com/Azure/azure-quickstart-templates) repo contains a large collection of templates that deploy common scenarios. The portal makes it easy for you find and use templates from this repo. You can save the template and reuse it later."
2828

2929
1. In a web browser, go to the [Azure portal](https://portal.azure.com) and sign in.
3030
1. From the Azure portal search bar, search for **deploy a custom template** and then select it from the available options.
3131

3232
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/search-custom-template.png" alt-text="Search for Custom Template":::
3333

34-
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.**
34+
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.**
3535

3636
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/select-custom-template.png" alt-text="Select Quickstart Template":::
3737

3838
1. In the next blade, you provide custom values to use for the deployment.
3939

40-
For Resource group, select Create new. Provide *myResourceGroup* for the name. You can use the default values for the other fields. When you've finished providing values, select **Review + create**.
40+
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**.
4141

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

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

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

4848
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.
4949

@@ -55,7 +55,7 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
5555

5656
## Edit and deploy the template
5757

58-
You can use the portal for quickly developing and deploying ARN templates. In general, we recommend using Visual Studio Code for developing your ARM templates, and Azure CLI or Azure PowerShell for deploying the template, but you can use the portal for quick deployments without installing those tools.
58+
You can use the portal for quickly developing and deploying ARM templates. In general, we recommend using Visual Studio Code for developing your ARM templates, and Azure CLI or Azure PowerShell for deploying the template, but you can use the portal for quick deployments without installing those tools.
5959

6060
In this section, let's suppose you have an ARM template that you want to deploy one time with setting up the other tools.
6161

@@ -67,7 +67,7 @@ In this section, let's suppose you have an ARM template that you want to deploy
6767

6868
1. You see a blank template.
6969

70-
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/blank-template.png" alt-text="Build your own template":::
70+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/blank-template.png" alt-text="Blank Template":::
7171

7272
1. Replace the blank template with the following template. It deploys a virtual network with a subnet.
7373

@@ -149,7 +149,8 @@ In this section, let's suppose you have an ARM template that you want to deploy
149149
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-second-deployment.png" alt-text="View second deployment":::
150150

151151
1. Notice that your resource group now contains a storage account and a virtual network.
152-
152+
153+
:::image type="content" source="./media/quickstart-create-templates-use-the-portal/view-resource-group.png" alt-text="View Storage Account and Virtual Network":::
153154

154155
## Export a custom template
155156

@@ -167,10 +168,10 @@ In this section, let's suppose you have an ARM template that you want to deploy
167168

168169
When the Azure resources are no longer needed, clean up the resources you deployed by deleting the resource group.
169170

170-
1. In the Azure portal, select **resource group** on the left menu.
171-
1. Enter the resource group name in the **filter by name** field.
171+
1. In the Azure portal, select **Resource groups** on the left menu.
172+
1. Enter the resource group name in the **Filter for any field** search box.
172173
1. Select the resource group name. You shall see the storage account in the resource group.
173-
1. Select **delete resource group** in the top menu.
174+
1. Select **Delete resource group** in the top menu.
174175

175176
## Next steps
176177

0 commit comments

Comments
 (0)