From aa9b02307d847ca0db960c3b4672018a8db6399d Mon Sep 17 00:00:00 2001 From: Milena Zlaticanin <60530402+Zlaticanin@users.noreply.github.com> Date: Mon, 4 Dec 2023 15:41:25 -0700 Subject: [PATCH] Update Azure Secrets docs (#24279) --- website/content/api-docs/secret/azure.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/content/api-docs/secret/azure.mdx b/website/content/api-docs/secret/azure.mdx index f0ced9b035..2124e64b49 100644 --- a/website/content/api-docs/secret/azure.mdx +++ b/website/content/api-docs/secret/azure.mdx @@ -212,6 +212,9 @@ information about roles. suffixed strings ("1h") or an integer number of seconds. Defaults to the system/engine max TTL time. - `permanently_delete` (`bool: false`) - Specifies whether to permanently delete Applications and Service Principals that are dynamically created by Vault. If `application_object_id` is present, `permanently_delete` must be `false`. +- `sign_in_audience` (`string: ""`) - Specifies the security principal types that are allowed to sign in to the application. + Valid values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. +- `tags` (`string: ""`) - A comma-separated string of Azure tags to attach to an application. ### Sample payload @@ -229,6 +232,8 @@ information about roles. ]", "ttl": 3600, "max_ttl": "24h" + "sign_in_audience": "AzureADMyOrg" + "tags": "team:engineering","environment:development" } ```