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" } ```