Skip to content

Commit f949406

Browse files
committed
adding '--sku free' to az appconfig create cmds.
1 parent 8347daf commit f949406

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

articles/azure-app-configuration/howto-app-configuration-event.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,14 @@ az group create --name <resource_group_name> --location westus
4242

4343
## Create an App Configuration
4444

45-
Replace `<appconfig_name>` with a unique name for your App Configuration, and `<resource_group_name>` with the resource group you created earlier. The name must be unique because it is used as a DNS name.
45+
Replace `<appconfig_name>` with a unique name for your configuration store, and `<resource_group_name>` with the resource group you created earlier. The name must be unique because it is used as a DNS name.
4646

4747
```azurecli-interactive
4848
az appconfig create \
4949
--name <appconfig_name> \
5050
--location westus \
51-
--resource-group <resource_group_name>
51+
--resource-group <resource_group_name> \
52+
--sku free
5253
```
5354

5455
## Create a message endpoint
@@ -116,7 +117,6 @@ You've triggered the event, and Event Grid sent the message to the endpoint you
116117
"dataVersion": "1",
117118
"metadataVersion": "1"
118119
}]
119-
120120
```
121121

122122
## Clean up resources

articles/azure-app-configuration/overview-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how managed identities work in Azure App Configuration and ho
44
author: jpconnock
55

66
ms.topic: article
7-
ms.date: 02/18/2020
7+
ms.date: 02/25/2020
88
ms.author: jeconnoc
99
ms.reviewer: lcozzens
1010
ms.service: azure-app-configuration

articles/azure-app-configuration/scripts/cli-create-service.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ appConfigHostname=$(az appconfig create \
4040
--location eastus \
4141
--resource-group $myResourceGroupName \
4242
--query hostName \
43-
-o tsv)
43+
--sku free \
44+
-o tsv
45+
)
4446
4547
# Get the AppConfig connection string
4648
appConfigConnectionString=$(az appconfig credential list \

0 commit comments

Comments
 (0)