Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Azure secrets docs + deprecation #25637

Merged
merged 9 commits into from
Feb 28, 2024
3 changes: 3 additions & 0 deletions changelog/25637.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:deprecation
secrets/azure: Deprecate field "password_policy" as we are not able to set it anymore with the new MS Graph API.
```
4 changes: 0 additions & 4 deletions website/content/api-docs/secret/azure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ service principals. Environment variables will override any parameters set in th
provided with the AZURE_CLIENT_SECRET environment variable. See [authentication](/vault/docs/secrets/azure#authentication) for more details.
- `environment` (`string:""`) - The Azure environment. This value can also be provided with the AZURE_ENVIRONMENT
environment variable. If not specified, Vault will use Azure Public Cloud.
- `password_policy` `(string: "")` - Specifies a [password policy](/vault/docs/concepts/password-policies) to
use when creating dynamic credentials. Defaults to generating an alphanumeric password if not set.
- `root_password_ttl` `(string: 182d)` - Specifies how long the root password is valid for in Azure when
rotate-root generates a new client secret. Uses [duration format strings](/vault/docs/concepts/duration-format).

Expand All @@ -48,7 +46,6 @@ service principals. Environment variables will override any parameters set in th
"client_id": "e607c4...",
"client_secret": "9a6346...",
"environment": "AzureGermanCloud",
"password_policy": "azure_policy",
"root_password_ttl": "48d"
}
```
Expand Down Expand Up @@ -76,7 +73,6 @@ $ vault write azure/config \
client_id="e607c4...",
client_secret="9a6346...",
environment="AzureGermanCloud",
password_policy="azure_policy"
```

</Tab>
Expand Down
Loading
Loading