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

Allow enabling "Connection button" for Azure Active Directory enterprise connection (waad) #57

Closed
sergiught opened this issue Feb 21, 2022 · 1 comment · Fixed by #80
Labels
🌱 feature New feature or request

Comments

@sergiught
Copy link
Contributor

From terraform-provider-auth0 created by smhamza24: alexkappa/terraform-provider-auth0#495

Description

When creating auth0_connection with strategy waad the login button doesn't appear on login page until we go to auth0 dashboard and manually set "Display connection as a button" checkbox.

New or Affected Resource(s)

  • auth0_connection

Potential Terraform Configuration

resource "auth0_connection" "aad" {
  name     = "microsoft-azure-AD"
  strategy = "waad"
  options {
    waad_common_endpoint = false
    tenant_domain = "test.com"
    identity_api = "microsoft-identity-platform-v2.0"
    client_id = "asdfasdfafsd"
    client_secret = "asfasdf"
    //something like following could be helpful
    display_connection_as_button = true
    display_connection_as_button_label = "Login with AD"
    display_connection_as_button_logo = "https://my.domain/logo.png"
  }
  enabled_clients = [auth0_client.my_new_app.id]
}

References

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment
@sergiught
Copy link
Contributor Author

sergiught commented Mar 4, 2022

cc: @smhamza24

This is now available through #80.

e.g.

resource "auth0_connection" "aad" {
  name     = "microsoft-azure-AD"
  strategy = "waad"
  show_as_button = true
  display_name = "Login with AD"
  options {
    icon_url = "https://my.domain/logo.png"
  }
}

Once that is merged, we'll be making a release:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🌱 feature New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant