IngressTLSArgs

data class IngressTLSArgs(val hosts: Output<List<String>>? = null, val secretName: Output<String>? = null) : ConvertibleToJava<IngressTLSArgs>

IngressTLS describes the transport layer security associated with an Ingress.

Constructors

Link copied to clipboard
constructor(hosts: Output<List<String>>? = null, secretName: Output<String>? = null)

Properties

Link copied to clipboard
val hosts: Output<List<String>>? = null

Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

Link copied to clipboard
val secretName: Output<String>? = null

SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

Functions

Link copied to clipboard
open override fun toJava(): IngressTLSArgs