terraform-provider-azuread
terraform-provider-azuread copied to clipboard
Additional resources azuread_application_homepage_url, azuread_application_logout_url, azuread_application_implicit_grant
Community Note
- Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritise this request
- Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritise the request
- If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
It would be very helpful to have dedicated resources for some settings on the azuread_application_registration / azuread_application. Our use case is to provide app registrations to our application teams which should be able to configure those on their own using terraform.
For most cases this works pretty well (e..g. azuread_application_api_access, azuread_application_app_role), however, a few things are missing.
New or Affected Resource(s)
New Resources:
- azuread_application_homepage_url
- azuread_application_logout_url
- azuread_application_implicit_grant
Potential Terraform Configuration
azuread_application_homepage_url:
resource "azuread_application_homepage_url" "app" {
application_id = data.azuread_application.app.id
homepage_url = "www.myapp.com"
}
azuread_application_logout_url:
resource "azuread_application_logout_url" "app" {
application_id = data.azuread_application.app.id
homepage_url = "www.myapp.com/logout"
}
azuread_application_implicit_grant:
resource "azuread_application_implicit_grant" "app" {
application_id = data.azuread_application.app.id
implicit_access_token_issuance_enabled = true
implicit_id_token_issuance_enabled = true
}