We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'd like to be able to set error_page attributes for tenant settings.
Ideally, I would like the auth0_tenant resource to have the optional error_page block like this:
auth0_tenant
error_page
resource "auth0_tenant" "this" { error_page { html = "string" show_log_link = boolean url = "string" } }
No response
With the Management API PATCH /api/v2/tenants/settings endpoint, we can set three config values:
PATCH /api/v2/tenants/settings
{ "error_page": { "html": "string", "show_log_link": false, "url": "string" } }
The text was updated successfully, but these errors were encountered:
Hey @yurios, this is supported through this resource:
https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/pages
Sorry, something went wrong.
No branches or pull requests
Checklist
Describe the problem you'd like to have solved
I'd like to be able to set error_page attributes for tenant settings.
Describe the ideal solution
Ideally, I would like the
auth0_tenant
resource to have the optionalerror_page
block like this:Alternatives and current workarounds
No response
Additional context
With the Management API
PATCH /api/v2/tenants/settings
endpoint, we can set three config values:The text was updated successfully, but these errors were encountered: