Update Azure Secrets docs (#24279)

This commit is contained in:
Milena Zlaticanin
2023-12-04 15:41:25 -07:00
committed by GitHub
parent aeb817dfba
commit aa9b02307d

View File

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