Data source to retrieve signing keys used by the applications in your tenant. Learn more.
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"
)
}
id
(String) The ID of this resource.signing_keys
(List of Object) All application signing keys. (see below for nested schema)signing_keys
Read-Only:
cert
(String)current
(Boolean)fingerprint
(String)kid
(String)next
(Boolean)pkcs7
(String)previous
(Boolean)revoked
(Boolean)thumbprint
(String)