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

New resource to manage application extension properties #737

Open
phenixdotnet opened this issue Feb 16, 2022 · 1 comment
Open

New resource to manage application extension properties #737

phenixdotnet opened this issue Feb 16, 2022 · 1 comment

Comments

@phenixdotnet
Copy link

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

Add a new resource to allow management of extension properties. In Azure AD (B2C), extension properties are linked to an application and allow developers to add data to an user. This is particularly useful when working with Azure AD B2C and Trust Framework.

New or Affected Resource(s)

  • azuread_application_extension_property

Potential Terraform Configuration

resource "azuread_application" "example" {
  display_name     = "example"
}

resource "azuread_application_extension_property" {
   application_id = azuread_application.example.id

   name = "my_custom_extension_property"
   data_type = "String"
   target_objects = "Users"
}

References

If this looks acceptable, I'm ready to have a look at it and submit a PR

@GrapeJuice787
Copy link

GrapeJuice787 commented May 5, 2023

Will this include directory extensions, or would that be a separate feature request? Looking to automate the provisioning of directory extensions for groups.

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

3 participants