Target Gke Args
data class TargetGkeArgs(val cluster: Output<String>? = null, val dnsEndpoint: Output<Boolean>? = null, val internalIp: Output<Boolean>? = null, val proxyUrl: Output<String>? = null) : ConvertibleToJava<TargetGkeArgs>
Properties
Link copied to clipboard
Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both dns_endpoint
and internal_ip
cannot be set to true.
Link copied to clipboard
Optional. If true, cluster
is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when cluster
is a private GKE cluster.