# clerk_blocklist_identifier (Resource)

An entry in the sign-up blocklist. Identifiers on this list cannot sign up.

## Example Usage

```terraform
resource "clerk_blocklist_identifier" "spam_domain" {
  identifier = "*@spam.example"
}
```

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

### Required

- `identifier` (String) Email address, phone number (with a `+` prefix), or a wildcard domain such as `*@spam.example`. A change forces a replacement.

### Read-Only

- `id` (String) Blocklist identifier id.
- `identifier_type` (String) Type that Clerk detected: `email_address`, `phone_number`, or `web3_wallet`.

## 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_blocklist_identifier.spam_domain blid_2abcDEFghiJKLmnoPQRstuVWXyz
```