Show / Hide Table of Contents

Class ClusterVpcConfigArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClusterVpcConfigArgs
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.Aws.Eks.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ClusterVpcConfigArgs : ResourceArgs

Constructors

View Source

ClusterVpcConfigArgs()

Declaration
public ClusterVpcConfigArgs()

Properties

View Source

ClusterSecurityGroupId

The cluster security group that was created by Amazon EKS for the cluster.

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

EndpointPrivateAccess

Indicates whether or not the Amazon EKS private API server endpoint is enabled. Default is false.

Declaration
public Input<bool> EndpointPrivateAccess { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

EndpointPublicAccess

Indicates whether or not the Amazon EKS public API server endpoint is enabled. Default is true.

Declaration
public Input<bool> EndpointPublicAccess { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

PublicAccessCidrs

List of CIDR blocks. Indicates which CIDR blocks can access the Amazon EKS public API server endpoint when enabled. EKS defaults this to a list with 0.0.0.0/0. This provider will only perform drift detection of its value when present in a configuration.

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

SecurityGroupIds

List of security group IDs for the cross-account elastic network interfaces that Amazon EKS creates to use to allow communication between your worker nodes and the Kubernetes control plane.

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

SubnetIds

List of subnet IDs. Must be in at least two different availability zones. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your worker nodes and the Kubernetes control plane.

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

VpcId

The VPC associated with your cluster.

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