MTLSPolicyArgs

data class MTLSPolicyArgs(val clientValidationCa: Output<List<ValidationCAArgs>>? = null, val clientValidationMode: Output<MTLSPolicyClientValidationMode>? = null, val clientValidationTrustConfig: Output<String>? = null) : ConvertibleToJava<MTLSPolicyArgs>

Specification of the MTLSPolicy.

Constructors

Link copied to clipboard
fun MTLSPolicyArgs(clientValidationCa: Output<List<ValidationCAArgs>>? = null, clientValidationMode: Output<MTLSPolicyClientValidationMode>? = null, clientValidationTrustConfig: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard

Required if the policy is to be used with Traffic Director. For external HTTPS load balancers it must be empty. Defines the mechanism to obtain the Certificate Authority certificate to validate the client certificate.

Link copied to clipboard

When the client presents an invalid certificate or no certificate to the load balancer, the client_validation_mode specifies how the client connection is handled. Required if the policy is to be used with the external HTTPS load balancing. For Traffic Director it must be empty.

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

Reference to the TrustConfig from certificatemanager.googleapis.com namespace. If specified, the chain validation will be performed against certificates configured in the given TrustConfig. Allowed only if the policy is to be used with external HTTPS load balancers.