Show / Hide Table of Contents

Class NodeGroupRemoteAccessArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NodeGroupRemoteAccessArgs
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 NodeGroupRemoteAccessArgs : ResourceArgs

Constructors

View Source

NodeGroupRemoteAccessArgs()

Declaration
public NodeGroupRemoteAccessArgs()

Properties

View Source

Ec2SshKey

EC2 Key Pair name that provides access for SSH communication with the worker nodes in the EKS Node Group. If you specify this configuration, but do not specify source_security_group_ids when you create an EKS Node Group, port 22 on the worker nodes is opened to the Internet (0.0.0.0/0).

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

SourceSecurityGroupIds

Set of EC2 Security Group IDs to allow SSH access (port 22) from on the worker nodes. If you specify ec2_ssh_key, but do not specify this configuration when you create an EKS Node Group, port 22 on the worker nodes is opened to the Internet (0.0.0.0/0).

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