Skip to content

Commit f6d71f9

Browse files
committed
acrolinx
1 parent 0ed4cf4 commit f6d71f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-app-configuration/quickstart-resource-manager.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Automated VM deployment with Azure App Configuration quickstart
3-
description: This quickstart demonstrates how to use the Azure PowerShell module and Azure Resource Manager templates to deploy an Azure App Configuration store and use the values in the store to deploy a VM.
3+
description: This quickstart demonstrates how to use the Azure PowerShell module and Azure Resource Manager templates to deploy an Azure App Configuration store. Then use the values in the store to deploy a VM.
44
author: lisaguthrie
55
ms.author: lcozzens
66
ms.date: 03/05/2020
@@ -11,7 +11,7 @@ ms.custom: mvc
1111

1212
# Quickstart: Automated VM deployment with App Configuration
1313

14-
The Azure PowerShell module is used to create and manage Azure resources using PowerShell cmdlets or scripts. This quickstart details using the Azure PowerShell module and Azure Resource Manager templates to deploy an Azure App Configuration store and use the key-values in the store to deploy a VM.
14+
The Azure PowerShell module is used to create and manage Azure resources using PowerShell cmdlets or scripts. This quickstart shows you how to use Azure PowerShell and Azure Resource Manager templates to deploy an Azure App Configuration store. Then you learn how to use the key-values in the store to deploy a VM.
1515

1616
You use the prerequisite template to create an App Configuration store, and then add key-values into the store using the Azure portal or Azure CLI. The primary template references existing key-value configurations from an existing configuration store. The retrieved values are used to set properties of the resources created by the template, like a VM in this example.
1717

@@ -32,7 +32,7 @@ Sign in to your Azure subscription with the `Connect-AzAccount` command, and ent
3232
Connect-AzAccount
3333
```
3434

35-
If you have more than one subscription, select the subscription you would like to use for this quickstart by running the following cmdlets. Don't forget to replace `<your subscription name>` with the name of your subscription:
35+
If you have more than one subscription, select the subscription you'd like to use for this quickstart by running the following cmdlets. Don't forget to replace `<your subscription name>` with the name of your subscription:
3636

3737
```azurepowershell-interactive
3838
# List all available subscriptions.
@@ -58,7 +58,7 @@ New-AzResourceGroup `
5858

5959
Before you can apply key-values to the VM, you must have an existing Azure App Configuration store. This section details how to deploy an Azure App Configuration store using an Azure Resource Manager template. If you already have an app config store, you can move to the next section of this article.
6060

61-
1. Copy and paste the following json code into a new file named *prereq.azuredeploy.json*..
61+
1. Copy and paste the following json code into a new file named *prereq.azuredeploy.json*.
6262

6363
```json
6464
{
@@ -142,7 +142,7 @@ You can create an App Configuration store using an Azure Resource Manager templa
142142

143143
## Deploy VM using stored key-values
144144

145-
Now that you've added key-values to the store, you're ready to deploy a VM using an Azure Resource Manager template that references the **windowsOsVersion** and **diskSizeGB** keys you created.
145+
Now that you've added key-values to the store, you're ready to deploy a VM using an Azure Resource Manager template. The template references the **windowsOsVersion** and **diskSizeGB** keys you created.
146146

147147
1. Copy and paste the following json code into a new file named *azuredeploy.json*, or download the file from [Azure Quickstart templates](https://github.com/Azure/azure-quickstart-templates/blob/master/101-app-configuration/azuredeploy.json).
148148

@@ -401,7 +401,7 @@ Now that you've added key-values to the store, you're ready to deploy a VM using
401401
}
402402
```
403403

404-
Replace the parameter values with the following:
404+
Replace the parameter values in the template with the following values:
405405

406406
|Parameter|Value|
407407
|-|-|

0 commit comments

Comments
 (0)