From e8a1a04eb46c76f3c337ee9a5f54b8b9ae0f7a92 Mon Sep 17 00:00:00 2001 From: Sune Keller Date: Wed, 6 May 2020 13:06:04 +0200 Subject: [PATCH] Add docs Signed-off-by: Sune Keller --- website/docs/d/api_management.html.markdown | 12 ++++++++++++ website/docs/r/api_management.html.markdown | 8 +++++++- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/website/docs/d/api_management.html.markdown b/website/docs/d/api_management.html.markdown index 4237eae295ea..9902fc3e2c30 100644 --- a/website/docs/d/api_management.html.markdown +++ b/website/docs/d/api_management.html.markdown @@ -41,6 +41,8 @@ output "api_management_id" { * `gateway_regional_url` - The URL for the Gateway in the Default Region. +* `identity` - (Optional) An `identity` block as defined below. + * `hostname_configuration` - A `hostname_configuration` block as defined below. * `management_api_url` - The URL for the Management API. @@ -73,6 +75,16 @@ A `additional_location` block exports the following: --- +A `identity` block exports the following: + +~> **Note:** User Assigned Managed Identities are in Preview + +* `type` - Specifies the type of Managed Service Identity that is configured on this API Management Service. + +* `identity_ids` - A list of IDs for User Assigned Managed Identity resources to be assigned. + +--- + A `hostname_configuration` block exports the following: * `management` - One or more `management` blocks as documented below. diff --git a/website/docs/r/api_management.html.markdown b/website/docs/r/api_management.html.markdown index 26aa3063d145..b1fb41b7eddf 100644 --- a/website/docs/r/api_management.html.markdown +++ b/website/docs/r/api_management.html.markdown @@ -118,7 +118,13 @@ A `hostname_configuration` block supports the following: A `identity` block supports the following: -* `type` - (Required) Specifies the type of Managed Service Identity that should be configured on this API Management Service. At this time the only supported value is`SystemAssigned`. +~> **Note:** User Assigned Managed Identities are in Preview + +* `type` - (Required) Specifies the type of Managed Service Identity that should be configured on this API Management Service. Possible values are `SystemAssigned`, `UserAssigned` or `SystemAssigned, UserAssigned` (to enable both). + +* `identity_ids` - (Optional) A list of IDs for User Assigned Managed Identity resources to be assigned. + +~> **NOTE:** This is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`. ---