wihan/dev

docs /clerk / data sources

markdown
browse the clerk docs

clerk_jwks (Data Source)

The JSON Web Key Set of the instance.

Example Usage

data "clerk_jwks" "this" {}

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

Schema

Read-Only

Nested Schema for keys

Read-Only:

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