Class: Aws::EKS::Types::RemoteAccessConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::RemoteAccessConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
An object representing the remote access configuration for the managed node group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ec2_ssh_key ⇒ String
The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group.
-
#source_security_groups ⇒ Array<String>
The security group IDs that are allowed SSH access (port 22) to the nodes.
Instance Attribute Details
#ec2_ssh_key ⇒ String
The Amazon EC2 SSH key name that provides access for SSH communication with the nodes in the managed node group. For more information, see [Amazon EC2 key pairs and Linux instances] in the *Amazon Elastic Compute Cloud User Guide for Linux Instances*. For Windows, an Amazon EC2 SSH key is used to obtain the RDP password. For more information, see [Amazon EC2 key pairs and Windows instances] in the *Amazon Elastic Compute Cloud User Guide for Windows Instances*.
[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html [2]: docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-key-pairs.html
5635 5636 5637 5638 5639 5640 |
# File 'lib/aws-sdk-eks/types.rb', line 5635 class RemoteAccessConfig < Struct.new( :ec2_ssh_key, :source_security_groups) SENSITIVE = [] include Aws::Structure end |
#source_security_groups ⇒ Array<String>
The security group IDs that are allowed SSH access (port 22) to the nodes. For Windows, the port is 3389. If you specify an Amazon EC2 SSH key but don’t specify a source security group when you create a managed node group, then the port on the nodes is opened to the internet (‘0.0.0.0/0`). For more information, see [Security Groups for Your VPC] in the *Amazon Virtual Private Cloud User Guide*.
[1]: docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html
5635 5636 5637 5638 5639 5640 |
# File 'lib/aws-sdk-eks/types.rb', line 5635 class RemoteAccessConfig < Struct.new( :ec2_ssh_key, :source_security_groups) SENSITIVE = [] include Aws::Structure end |