Skip to content

Commit 7e774b1

Browse files
committed
link to qs
1 parent ddb4eac commit 7e774b1

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

articles/api-center/includes/quickstart-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: dlepow
66

77
ms.service: api-center
88
ms.topic: include
9-
ms.date: 04/19/2024
9+
ms.date: 05/02/2024
1010
ms.author: danlep
1111
ms.custom: Include file
1212
---

articles/api-center/includes/quickstart-next-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: dlepow
66

77
ms.service: api-center
88
ms.topic: include
9-
ms.date: 04/22/2024
9+
ms.date: 05/02/2024
1010
ms.author: danlep
1111
ms.custom: Include file
1212
---

articles/api-center/set-up-api-center-bicep.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: In this quickstart, use Bicep to set up an API center for API disco
44
author: dlepow
55
ms.service: api-center
66
ms.topic: quickstart
7-
ms.date: 04/19/2024
7+
ms.date: 05/02/2024
88
ms.author: danlep
99
---
1010

@@ -20,35 +20,34 @@ ms.author: danlep
2020
[!INCLUDE [include](~/reusable-content/azure-cli/azure-cli-prepare-your-environment-no-header.md)]
2121

2222
* For Azure PowerShell:
23-
[!INCLUDE [azure-powershell-requirements-no-header.md](../../includes/azure-powershell-requirements-no-header.md)]
23+
[!INCLUDE [azure-powershell-requirements-no-header.md](../../includes/azure-powershell-requirements-no-header.md)]
2424

2525
## Review the Bicep file
2626

2727
The Bicep file used in this quickstart is from
28-
[Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/<template-name>).
28+
[Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/.
2929

30-
[code-block-or-link-to-code]
31-
TODO: Add your code or link
30+
:::code language="bicep" source="~/quickstart-templates/quickstarts/microsoft.apicenter/azure-api-center-create/main.bicep":::
3231

3332
The following Azure resources are defined in the Bicep file:
3433

3534
* [Mirosoft.ApiCenter/services](/azure/templates/microsoft.apicenter/services)
3635
* [Microsoft.ApiCenter/services/workspaces](/azure/templates/microsoft.apicenter/services/workspaces)
3736
* [Microsoft.ApiCenter/services/workspaces/apis](/azure/templates/microsoft.apicenter/services/workspaces/apis)
3837

39-
In this example, the Bicep file creates an API center by default in the Free plan and registers a sample API in the default workspace.
40-
38+
In this example, the Bicep file creates an API center in the Free plan and registers a sample API in the default workspace.
4139

4240
## Deploy the Bicep file
4341

44-
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).
42+
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).
4543

4644
1. Save the Bicep file as **main.bicep** to your local computer.
4745
1. Deploy the Bicep file using either Azure CLI or Azure PowerShell.
4846

4947
# [CLI](#tab/CLI)
5048

5149
```azurecli
50+
# Create a resource group in one of the supported regions for Azure API Center
5251
az group create --name exampleRG --location eastus
5352
5453
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters apiName="<api-name>" apiType="<api-type>"
@@ -66,6 +65,6 @@ You can use Azure CLI or Azure PowerShell to deploy the Bicep file. For more in
6665
6766
Replace **\<api-name\>** and **\<api-type\>** with the name and type of an API that you want to register in your API center.
6867
69-
When the deployment finishes, you should see a message indicating the deployment succeeded.
68+
When the deployment finishes, you should see a message indicating the deployment succeeded.
7069
7170
[!INCLUDE [quickstart-next-steps](includes/quickstart-next-steps.md)]

0 commit comments

Comments
 (0)