GetAuthBackendConfigResult

data class GetAuthBackendConfigResult(val backend: String? = null, val disableIssValidation: Boolean, val disableLocalCaJwt: Boolean, val id: String, val issuer: String, val kubernetesCaCert: String, val kubernetesHost: String, val namespace: String? = null, val pemKeys: List<String>)

A collection of values returned by getAuthBackendConfig.

Constructors

Link copied to clipboard
constructor(backend: String? = null, disableIssValidation: Boolean, disableLocalCaJwt: Boolean, id: String, issuer: String, kubernetesCaCert: String, kubernetesHost: String, namespace: String? = null, pemKeys: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val backend: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

Optional JWT issuer. If no issuer is specified, kubernetes.io/serviceaccount will be used as the default issuer.

Link copied to clipboard

PEM encoded CA cert for use by the TLS client used to talk with the Kubernetes API.

Link copied to clipboard

Host must be a host string, a host:port pair, or a URL to the base of the Kubernetes API server.

Link copied to clipboard
val namespace: String? = null
Link copied to clipboard

Optional list of PEM-formatted public keys or certificates used to verify the signatures of Kubernetes service account JWTs. If a certificate is given, its public key will be extracted. Not every installation of Kubernetes exposes these keys.