-
Notifications
You must be signed in to change notification settings - Fork 91
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
legacy_custom_claims
flag on auth0_tenant
resource
#288
Comments
Hey @nialdaly 👋🏻 thanks for raising this with us. The I don't have an ETA available for you for when we could start tackling this, as right now we're focusing on #14, but contributions are more than welcomed as well! |
Thanks! @sergiught I have raised a PR in auth0/go-auth0. Happy to make the change in |
Hey @nialdaly thanks a lot! That's highly appreciated! Would you mind actually raising the To do so you can temporarily in the After you've finished doing so you can simply run terraform {
required_providers {
auth0 = {
source = "auth0/auth0"
version = "0.38.0"
}
}
}
provider "auth0" {
debug = "true"
} The first thing that terraform checks is if there are any versions of the provider locally, and only after fetches them from the public registry. I can also help out with the http test recordings if you have issues updating those to make the tests pass as well. Let me know if you have any questions:) |
Thanks for the guidance! @sergiught I followed the steps above and made a new personal-use Auth0 tenant (on the free subscription plan, I use Auth0 for work which is where I noticed this) and tested the provider. The result is below. Based on what I've seen at work, when the
Conversely, when the
Would it be be an issue that the |
Hey @nialdaly thanks for pushing through with this 💪🏻 As far as I know the migrations section in the UI, should still use the But it depends on the specific tenant if the request will go through or not, as not all the tenants have the same flags available. Have you tried to toggle the flag through terraform on your companies Auth0 Tenant? |
Thanks! @sergiught Yes, the personal Auth0 tenant doesn't have the |
Hey @sergiught I was able to test this today using a tenant with
Is there a way to confirm that the |
Hey @nialdaly 👋🏻 thanks a lot for following up on this. As far as I know this should have worked if the tenant has that flag within the migrations section in the UI. Let me follow up internally with the team responsible for the tenant flags and find out what's happening. I'll circle back here once I have more info. Appreciate your patience 🙏🏻 |
Thank you! @sergiught |
Hey @nialdaly 👋🏻 , I really appreciate the back and forth we had so far and for initiating those changes within the Go SDK and the Terraform provider! Apologies it took a while to get back to you, here's what I found: Unfortunately even tho the flag is listed under the Migrations section and the other flags in that same section being available on the Unfortunately we won't be able to support this flag within the Provider 😢 and as such we'll have to close this issue down. If you have any other feedback for us so we can improve the provider please don't hesitate to bring it forward. We really wanna keep improving everyone's experience with it. |
Hi @sergiught no worries at all, thanks for getting back to me! Cheers! |
Checklist
Describe the problem you'd like to have solved
The ability to toggle the usage of namespaced custom claims in JWT tokens was recently added to the Auth0 Dashboard in Tenant Settings (Advanced).

Will this be added to terraform-provider-auth0 and to the go-auth0 as a prerequisite? It seems like the update (PATCH) is made via the
manage.auth0.com/api/migrations
endpoint versusmanage.auth0.com/api/tenants/settings
so the Management API may need to be changed first? Thanks!Describe the ideal solution
Alternatives and current workarounds
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: