# clerk_jwks (Data Source)

The JSON Web Key Set of the instance.

## Example Usage

```terraform
data "clerk_jwks" "this" {}

output "signing_key_ids" {
  value = [for k in data.clerk_jwks.this.keys : k.kid]
}
```

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

### Read-Only

- `keys` (Attributes List) Signing keys of the instance. (see [below for nested schema](#nestedatt--keys))

<a id="nestedatt--keys"></a>
### Nested Schema for `keys`

Read-Only:

- `algorithm` (String) Signing algorithm, for example `RS256`.
- `kid` (String) Key id.
- `use` (String) Key use, normally `sig`.