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-app-configuration/quickstart-resource-manager.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
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.
4
4
author: lisaguthrie
5
5
ms.author: lcozzens
6
6
ms.date: 03/05/2020
@@ -11,7 +11,7 @@ ms.custom: mvc
11
11
12
12
# Quickstart: Automated VM deployment with App Configuration
13
13
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.
15
15
16
16
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.
17
17
@@ -32,7 +32,7 @@ Sign in to your Azure subscription with the `Connect-AzAccount` command, and ent
32
32
Connect-AzAccount
33
33
```
34
34
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:
36
36
37
37
```azurepowershell-interactive
38
38
# List all available subscriptions.
@@ -58,7 +58,7 @@ New-AzResourceGroup `
58
58
59
59
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.
60
60
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*.
62
62
63
63
```json
64
64
{
@@ -142,7 +142,7 @@ You can create an App Configuration store using an Azure Resource Manager templa
142
142
143
143
## Deploy VM using stored key-values
144
144
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.
146
146
147
147
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).
148
148
@@ -401,7 +401,7 @@ Now that you've added key-values to the store, you're ready to deploy a VM using
401
401
}
402
402
```
403
403
404
-
Replace the parameter values with the following:
404
+
Replace the parameter values in the template with the following values:
0 commit comments