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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional resources azuread_application_homepage_url, azuread_application_logout_url, azuread_application_implicit_grant #1326

Open
jgschwendswica opened this issue Mar 6, 2024 · 0 comments

Comments

@jgschwendswica
Copy link

jgschwendswica commented Mar 6, 2024

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
}

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants