# clerk_redirect_url (Resource)

An entry in the allowlist of redirect URLs for OAuth and SSO flows. Clerk rejects a sign-in redirect to a URL that is not on this list.

## Example Usage

```terraform
resource "clerk_redirect_url" "app_callback" {
  url = "https://app.example.com/sso-callback"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `url` (String) The redirect URL, for example `https://app.example.com/sso-callback`. A change forces a replacement.

### Read-Only

- `id` (String) Redirect URL id.

## Import

Import is supported using the following syntax:

The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:

```shell
terraform import clerk_redirect_url.app_callback ru_2abcDEFghiJKLmnoPQRstuVWXyz
```