We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The persist_app field is missing from the vault_azure_secret_backend_role resource.
As per https://developer.hashicorp.com/vault/api-docs/v1.16.x/secret/azure#persist_app, there is now an API parameter that allows generated SPNs to persist for the lifetime of the role.
resource "vault_azure_secret_backend_role" "my-role" { backend = vault_azure_secret_backend.azure.path role = "my-role" ttl = 600 max_ttl = 3600 persist_app = true azure_roles { role_name = "Contributor" scope = "/subscriptions/${var.subscription_id}" } }
https://developer.hashicorp.com/vault/api-docs/v1.16.x/secret/azure#persist_app
Yes
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
The persist_app field is missing from the vault_azure_secret_backend_role resource.
As per https://developer.hashicorp.com/vault/api-docs/v1.16.x/secret/azure#persist_app, there is now an API parameter that allows generated SPNs to persist for the lifetime of the role.
Affected Resource(s) and/or Data Source(s)
Potential Terraform Configuration
References
https://developer.hashicorp.com/vault/api-docs/v1.16.x/secret/azure#persist_app
Would you like to implement a fix?
Yes
The text was updated successfully, but these errors were encountered: