Skip to content

Commit f939365

Browse files
committed
incorporate Dan's comments
1 parent fb1c22e commit f939365

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

articles/api-management/quickstart-bicep.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: api-management
77
tags: azure-resource-manager, bicep
88
ms.topic: quickstart
99
ms.author: jgao
10-
ms.date: 03/08/2022
10+
ms.date: 03/10/2022
1111
---
1212

1313
# Quickstart: Create a new Azure API Management service instance using bicep
@@ -30,10 +30,14 @@ The following resource is defined in the Bicep file:
3030

3131
- **[Microsoft.ApiManagement/service](/azure/templates/microsoft.apimanagement/service)**
3232

33+
In this example, the Bicep file configures the API Management instance in the Developer tier, an economical option to evaluate Azure API Management. This tier isn't for production use.
34+
3335
More Azure API Management Bicep samples can be found in [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/?resourceType=Microsoft.Apimanagement&pageNumber=1&sort=Popular).
3436

3537
## Deploy the Bicep file
3638

39+
You can use Azure CLI or Azure PowerShell to deploy the Bicep file. For more information about deploying Bicep files, see [Deploy](../azure-resource-manager/bicep/deploy-cli.md).
40+
3741
1. Save the Bicep file as **main.bicep** to your local computer.
3842
1. Deploy the Bicep file using either Azure CLI or Azure PowerShell.
3943

@@ -55,22 +59,24 @@ More Azure API Management Bicep samples can be found in [Azure Quickstart Templa
5559
5660
---
5761
62+
Replace **/<publisher-name>** and **/<publisher-email> with the name of the API publisher's organization and the email address to receive notifications.
63+
5864
When the deployment finishes, you should see a message indicating the deployment succeeded.
5965
6066
## Review deployed resources
6167
62-
Use the Azure portal, Azure CLI or Azure PowerShell to list the deployed resources.
68+
Use the Azure portal, Azure CLI or Azure PowerShell to list the deployed App Configuration resource in the resource group.
6369
6470
# [CLI](#tab/CLI)
6571
6672
```azurecli-interactive
67-
az apim show --name <api-management-name> --resource-group exampleRG
73+
az resource list --resource-group exampleRG
6874
```
6975

7076
# [PowerShell](#tab/PowerShell)
7177

7278
```azurepowershell-interactive
73-
Get-AzApiManagement -Name <api-management-name> -ResourceGroupName exampleRG
79+
Get-AzResource -ResourceGroupName exampleRG
7480
```
7581

7682
---

0 commit comments

Comments
 (0)