Data Source: auth0_signing_keys

Data source to retrieve signing keys used by the applications in your tenant. Learn more.

Example Usage

data "auth0_signing_keys" "my_keys" {}

# Example on how to get the current key from the data source.
output "current_key" {
  value = try(
    element([for key in data.auth0_signing_keys.my_keys.signing_keys : key.kid if key.current], 0),
    "No current key found"
  )
}

Schema

Read-Only

Nested Schema for signing_keys

Read-Only: