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

Add support for error_page tenant setting #992

Open
1 task done
yurios opened this issue Jul 24, 2024 · 1 comment
Open
1 task done

Add support for error_page tenant setting #992

yurios opened this issue Jul 24, 2024 · 1 comment
Labels
🌱 feature New feature or request

Comments

@yurios
Copy link

yurios commented Jul 24, 2024

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 optional error_page block like this:

resource "auth0_tenant" "this" {
  error_page {
    html          = "string"
    show_log_link = boolean
    url           = "string"
  }
}

Alternatives and current workarounds

No response

Additional context

With the Management API PATCH /api/v2/tenants/settings endpoint, we can set three config values:

{
  "error_page": {
    "html": "string",
    "show_log_link": false,
    "url": "string"
  }
}
@yurios yurios added the 🌱 feature New feature or request label Jul 24, 2024
@danwoda
Copy link

danwoda commented Aug 16, 2024

Hey @yurios, this is supported through this resource:

https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/pages

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

No branches or pull requests

2 participants