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/api-management/api-management-howto-add-products.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -218,6 +218,8 @@ In this article, you use Terraform to create an Azure API Management instance, a
218
218
219
219
> [!div class="checklist"]
220
220
>
221
+
> * Specify the required version of Terraform and the required providers.
222
+
> * Define variables for the resource group name prefix, resource group location, and the content format and value for the API definition import.
221
223
> * Create a resource group with a randomized name.
222
224
> * Create an API Management service with a randomized name.
223
225
> * Create an API with a randomized name.
@@ -226,8 +228,6 @@ In this article, you use Terraform to create an Azure API Management instance, a
226
228
> * Associate the API with the product.
227
229
> * Associate the group with the product.
228
230
> * Output the randomized values such as the names of the resource group, API Management service, API, product, and group.
229
-
> * Specify the required version of Terraform and the required providers.
230
-
> * Define variables for the resource group name prefix, resource group location, and the content format and value for the API definition import.
231
231
232
232
## Prerequisites
233
233
@@ -270,9 +270,13 @@ In this article, you use Terraform to create an Azure API Management instance, a
270
270
271
271
## Verify the results
272
272
273
-
Run [`az apim show`](/cli/azure/apim#az-apim-show) to view the Azure API Management.
273
+
Run [`az apim show`](/cli/azure/apim#az-apim-show) to view the Azure API Management:
274
274
275
-
The placeholders in the code block that must be changed are `<resource_group_name_prefix>`, `<resource_group_location>`, `<open_api_spec_content_format>`, and `<open_api_spec_content_value>`.
275
+
```azurecli
276
+
277
+
az apim show --<apim_service_name> --<resource_group_name>
0 commit comments