Module Values.VpcConfigResponseSource

An object representing an Amazon EKS cluster VPC configuration response.

Sourcetype nonrec t = {
  1. subnetIds : StringList.t option;
    (*

    The subnets associated with your cluster.

    *)
  2. securityGroupIds : StringList.t option;
    (*

    The security groups associated with the cross-account elastic network interfaces that are used to allow communication between your nodes and the Kubernetes control plane.

    *)
  3. clusterSecurityGroupId : String_.t option;
    (*

    The cluster security group that was created by Amazon EKS for the cluster. Managed node groups use this security group for control-plane-to-data-plane communication.

    *)
  4. vpcId : String_.t option;
    (*

    The VPC associated with your cluster.

    *)
  5. endpointPublicAccess : Boolean.t option;
    (*

    Whether the public API server endpoint is enabled.

    *)
  6. endpointPrivateAccess : Boolean.t option;
    (*

    This parameter indicates whether the Amazon EKS private API server endpoint is enabled. If the Amazon EKS private API server endpoint is enabled, Kubernetes API requests that originate from within your cluster's VPC use the private VPC endpoint instead of traversing the internet. If this value is disabled and you have nodes or Fargate pods in the cluster, then ensure that publicAccessCidrs includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see Cluster API server endpoint in the Amazon EKS User Guide .

    *)
  7. publicAccessCidrs : StringList.t option;
    (*

    The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that you specify is denied. The default value is 0.0.0.0/0 and additionally ::/0 for dual-stack `IPv6` clusters. If you've disabled private endpoint access, make sure that you specify the necessary CIDR blocks for every node and Fargate Pod in the cluster. For more information, see Cluster API server endpoint in the Amazon EKS User Guide . Note that the public endpoints are dual-stack for only IPv6 clusters that are made after October 2024. You can't add IPv6 CIDR blocks to IPv4 clusters or IPv6 clusters that were made before October 2024.

    *)
}
Sourceval make : ?subnetIds:??? -> ?securityGroupIds:??? -> ?clusterSecurityGroupId:??? -> ?vpcId:??? -> ?endpointPublicAccess:??? -> ?endpointPrivateAccess:??? -> ?publicAccessCidrs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t