Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RemoteAccessConfig

import type { RemoteAccessConfig } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

An object representing the remote access configuration for the managed node group.

interface RemoteAccessConfig {
ec2SshKey?: string | null;
sourceSecurityGroups?: string[] | null;
}

§Properties

§
ec2SshKey?: string | null
[src]

The Amazon EC2 SSH key 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.

§
sourceSecurityGroups?: string[] | null
[src]

The security groups that are allowed SSH access (port 22) to the nodes. If you specify an Amazon EC2 SSH key but do not specify a source security group when you create a managed node group, then port 22 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.