MasterAuthorizedNetworksConfigArgs

data class MasterAuthorizedNetworksConfigArgs(val cidrBlocks: Output<List<CidrBlockArgs>>? = null, val enabled: Output<Boolean>? = null) : ConvertibleToJava<MasterAuthorizedNetworksConfigArgs>

Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs.

Constructors

Link copied to clipboard
fun MasterAuthorizedNetworksConfigArgs(cidrBlocks: Output<List<CidrBlockArgs>>? = null, enabled: Output<Boolean>? = null)

Functions

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

Properties

Link copied to clipboard
val cidrBlocks: Output<List<CidrBlockArgs>>? = null

Up to 50 external networks that could access Kubernetes master through HTTPS.

Link copied to clipboard
val enabled: Output<Boolean>? = null

Whether or not master authorized networks feature is enabled.