Show / Hide Table of Contents

Class ClusterEksConfigArgs

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

Constructors

View Source

ClusterEksConfigArgs()

Declaration
public ClusterEksConfigArgs()

Properties

View Source

AccessKey

The AWS Client ID to use (string)

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

Ami

AMI ID to use for the worker nodes instead of the default (string)

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

AssociateWorkerNodePublicIp

Associate public ip EKS worker nodes. Default true (bool)

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

DesiredNodes

The desired number of worker nodes. Just for Rancher v2.3.x and above. Default 3 (int)

Declaration
public Input<int> DesiredNodes { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

InstanceType

The type of machine to use for worker nodes. Default t2.medium (string)

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

KeyPairName

Allow user to specify key name to use. Just for Rancher v2.2.7 and above (string)

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

KubernetesVersion

The Kubernetes master version (string)

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

MaximumNodes

The maximum number of worker nodes. Default 3 (int)

Declaration
public Input<int> MaximumNodes { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

MinimumNodes

The minimum number of worker nodes. Default 1 (int)

Declaration
public Input<int> MinimumNodes { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

NodeVolumeSize

The volume size for each node. Default 20 (int)

Declaration
public Input<int> NodeVolumeSize { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Region

The AWS Region to create the EKS cluster in. Default us-west-2 (string)

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

SecretKey

The AWS Client Secret associated with the Client ID (string)

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

SecurityGroups

List of security groups to use for the cluster. If it's not specified Rancher will create a new security group (list)

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

ServiceRole

The service role to use to perform the cluster operations in AWS. If it's not specified Rancher will create a new service role (string)

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

SessionToken

A session token to use with the client key and secret if applicable (string)

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

Subnets

List of subnets in the virtual network to use. If it's not specified Rancher will create 3 news subnets (list)

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

UserData

Pass user-data to the nodes to perform automated configuration tasks (string)

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

VirtualNetwork

The name of the virtual network to use. If it's not specified Rancher will create a new VPC (string)

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