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
keys(Attributes List) Signing keys of the instance. (see below for nested schema)
Nested Schema for keys
Read-Only:
algorithm(String) Signing algorithm, for exampleRS256.kid(String) Key id.use(String) Key use, normallysig.