Show / Hide Table of Contents

Class IngressTLSArgs

IngressTLS describes the transport layer security associated with an Ingress.

Inheritance
System.Object
InputArgs
ResourceArgs
IngressTLSArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Networking.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class IngressTLSArgs : ResourceArgs

Properties

View Source

Hosts

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.

Declaration
public InputList<string> Hosts { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

SecretName

SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS 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.

Declaration
public Input<string> SecretName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.