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
Now that Terraform 1.10 supports ephemeral resources, could the team consider updating the azuread_application_password resource to support this?
ephemeral
azuread_application_password
This would improve the management of application registration secrets.
Thank you for your attention to this matter.
ephemeral "azuread_application_password" "example" { application_id = azuread_application_registration.example.id }
resource "azuread_application_registration" "example" { display_name = "example" } resource "time_rotating" "example" { rotation_days = 7 } ephemeral "azuread_application_password" "example" { application_id = azuread_application_registration.example.id rotate_when_changed = { rotation = time_rotating.example.id } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Community Note
Description
Now that Terraform 1.10 supports
ephemeral
resources, could the team consider updating theazuread_application_password
resource to support this?This would improve the management of application registration secrets.
Thank you for your attention to this matter.
New or Affected Resource(s)
azuread_application_password
Potential Terraform Configuration
The text was updated successfully, but these errors were encountered: