Skip to content

Reviewing Hybrid Nodes Network Separation with Security Teams

Last Updated: September 16, 2026

An AWS control plane connecting to on-premises infrastructure through Direct Connect (DX) does not, by itself, establish a network-separation violation. Equally, “we use a private endpoint, therefore we comply” is not a valid conclusion. The review needs to establish which management connections cross trust boundaries, how they are controlled, and what data they can carry.

This article supports a technical review of a conventional routed Hybrid Nodes deployment with a private-only Kubernetes API endpoint and DX private routing. It is not a compliance determination or approval for a customer's industry, system classification, or internal policy. “Potentially acceptable” below means the organization's policy permits controlled management communication between networks. No customer account, DX connection, firewall, or cluster was inspected for this article.

Use the glossary if the AWS or Kubernetes abbreviations are unfamiliar.

An explanation to give the security team

EKS Hybrid Nodes connects on-premises nodes to an AWS-managed Kubernetes control plane. The design under review disables public access to the Kubernetes API and uses approved private routes and boundary firewalls. Connections initiated by the control plane traverse the EKS ENIs in the cluster VPC and are restricted to approved nodes on kubelet TCP 10250 and, where used, approved webhook destinations and ports. API and kubelet authentication and authorization, restricted operator permissions, and audit records are applied together.

The security case therefore depends on restricting and verifying which identities can perform which operations on which resources, rather than assuming that AWS or an endpoint is trusted. This architecture includes management connections between networks. A requirement for complete disconnection or a blanket ban on connections initiated from the cloud is incompatible with this design as described.

Use “restricted” and “applied” in a submission only when configuration and test evidence support those claims. At design time, say “planned and subject to verification.” AWS's Hybrid Nodes networking requirements explicitly list inbound TCP 10250 and required webhook ports for the on-premises firewall.

Three different meanings of “endpoint”

ComponentPurposeWhat it does not establish
Kubernetes API private endpointPrivate HTTPS TCP 443 access to the cluster API for kubelets, Pods, and approved operatorsIt does not eliminate control-plane connections toward on-premises infrastructure or prevent data movement through authorized API operations
EKS control-plane ENIs in the cluster VPCNetwork attachment between the API server and VPC / remote node and Pod networks, subject to attached security groups and routingAn ENI is not a DLP appliance, a certified cross-domain solution, or an application-command approval system
Interface VPC endpoints / PrivateLink for AWS servicesPrivate-address access to the corresponding AWS service API, such as eks, ssm, or rolesanywherecom.amazonaws.<region>.eks does not relay the Kubernetes API or control-plane-to-kubelet connections

AWS describes the Kubernetes API private endpoint as distinct from a traditional AWS API PrivateLink endpoint; it does not appear in the VPC console's endpoint list. The eks interface endpoint serves the AWS EKS management API, including DescribeCluster. Confusing these endpoints can lead to the false claim that an endpoint policy controls the TCP 10250 connection. Cluster endpoint, EKS PrivateLink

endpointPrivateAccess=true alone does not mean private-only. This article also assumes endpointPublicAccess=false. With both public and private access enabled, hybrid nodes can resolve the cluster hostname to public IPs. publicAccessCidrs does not restrict the private endpoint; cluster security groups, routing, and firewalls control the private path. Endpoint access modes

Which side initiates each connection?

The diagram shows requests on two separate TCP sessions. Reverse arrows do not mean that responses on an existing outbound connection support every operation. The boundary firewall is a customer-designed control; DX does not automatically supply it.

Dashed responses traverse the approved path in reverse. The drawing does not introduce a proxy that changes TLS termination. Actual routing depends on VPC route tables, the chosen VGW or TGW/DX gateway configuration, and on-premises routing and firewalls. AWS packet-flow reference

Connection initiator → destinationDestination portPurpose and review scope
Hybrid kubelet → Kubernetes API private endpointTCP 443Cluster management, including node status and Pod specifications
API server → hybrid node kubeletTCP 10250A separate connection used for operations such as logs, exec, attach, cp, and port-forward
API server → on-premises webhook / aggregated API backendActual backend TCP portSeparate approval when these components run on-premises; distinguish the Service port from the actual destination port
Hybrid node → selected SSM or IAM Roles Anywhere endpointTCP 443Node temporary-credential issuance and renewal; review permissions and connectivity for any SSM management features as well
Pod → Kubernetes API / required AWS servicesCommonly TCP 443CNI SNAT affects the source address visible at a firewall and the return path
DNS client → approved resolverUDP/TCP 53Define DNS paths separately, accounting for CoreDNS placement and DNS forwarding
Applications, CNI, and monitoring componentsFeature-specificMaintain a separate flow inventory rather than approving these collectively as management traffic

This table is not a complete firewall policy for every CNI and application. Use Network Configuration and AWS's ongoing-operation requirements for details. Webhook port 8443 is an example, not a request to allow every port at or above 8443.

Allowing stateful return traffic for node-initiated TCP 443 does not allow a new inbound TCP 10250 connection. Describing this architecture as an outbound-only agent tunnel creates both operational and security errors. Security groups are stateful; network ACLs are stateless and need separate return-traffic consideration. If NAT or inspection devices intervene, verify the addresses visible at each boundary and the symmetric return path. Hybrid traffic flows, Security groups and network ACLs

Turn network-separation policy into design requirements

First obtain the customer's actual policy statement. This table checks technical compatibility with requirements, not the interpretation of legislation or regulatory exemptions.

Customer requirementAssessment of this design
No internet exposure; approved private management connections between networks are allowedA candidate for review. Demonstrate public API disablement, private paths for required services, least privilege, firewall controls, and records
Physical disconnection prevents real-time communication with an external control planeConflicts with Hybrid Nodes connectivity requirements. Consider locating the control plane inside the permitted internal boundary
Only responses to internally initiated sessions are allowed; all new cloud-initiated connections are prohibitedConflicts with the kubelet and webhook flows of a conventional routed Hybrid Nodes deployment
Workload domains require independent administrative authority as well as separate networksDo not conclude from VLANs or namespaces alone. Review the shared cluster administrator and control plane; separate clusters where needed
Kubernetes objects, Secrets, and operational logs must also remain exclusively on-premisesIdentify data that conflicts with an AWS-hosted control plane. Node placement alone cannot satisfy the requirement
Connections require a specified cross-domain appliance and approval processDo not presume DX or PrivateLink replaces that appliance or process. Confirm applicability and functional compatibility

Restricted-Internet Setup distinguishes internet restriction from complete disconnection from AWS. Hybrid Nodes requires reliable bidirectional connectivity. Hybrid Nodes overview

Apply each control at the right boundary

Routing and network access

Remote node and Pod CIDRs tell EKS about the destination networks. Registering them does not complete on-premises routes, firewalls, or isolation policies. Inspect EKS-created cluster SG inbound rules too, including stale rules after a CIDR reduction. AWS explicitly states that removing remote networks does not automatically remove their security group rules. Networking and SG configuration

Present the rule as verified EKS ENI source-address range → designated hybrid node addresses → TCP 10250. ENI IPs can change, so do not freeze today's /32 list permanently. Where feasible, dedicated control-plane subnets narrow address ownership; maintain an allowlist update and revalidation process for ENI replacement and cluster updates. Allowing a whole shared subnet can include other resources in that source range: record this residual risk. EKS ENI lifecycle and network planning

Review cluster SG egress, VPC/TGW routes, and on-premises boundary and host firewalls together. An SG ID is not an identity carried to an on-premises firewall. A route also does not establish authorization for an API operation. Limit propagation and access to unrelated business-network prefixes, and verify denial of destinations outside the approved set. These are design recommendations, not claims about controls already applied to a customer environment.

Encryption, identity, and authorization

DX does not encrypt traffic in transit by default. Preserve TLS and authentication checks for the Kubernetes API and kubelet HTTPS connections. If link encryption is required, review supported IPsec over DX or MACsec options and their coverage. MACsec protects supported DX links; its scope differs from application end-to-end TLS. DX usage alone does not prove encryption of every application or overlay flow. DX encryption

A private IP address does not establish the caller's permissions. Review operator IAM identities, EKS access entries/access policies and Kubernetes RBAC, node identities, and kubelet authentication and authorization separately. Do not resolve connectivity problems by disabling TLS verification or enabling anonymous/AlwaysAllow kubelet access. Direct kubelet access is a separate authorization path and must not be treated as equivalent to an API-server-mediated operation. EKS access management, Kubelet authentication and authorization

An AWS service endpoint policy filters that service's API calls through that endpoint. It does not grant IAM permissions or replace Kubernetes RBAC. When SSM is used, review authorization for management features such as Run Command and Session Manager. A node initiating HTTPS does not remove the possibility of externally directed management commands. Endpoint access control, SSM access control

Data and administrative boundaries

Hybrid Nodes does not automatically replicate all business datasets processed by on-premises Pods into AWS. However, the AWS control plane manages Kubernetes API objects. Sensitive content placed in Pod specifications, ConfigMaps, or Kubernetes Secrets becomes managed data too. logs transfers application output, while exec, cp, and port-forward can provide authorized users with data-access paths. Do not claim that management traffic can never contain business data. Encryption of API data at rest does not change its storage location or prevent movement through authorized reads. Hybrid networking concepts, EKS API data encryption

Review pods/log, pods/exec, pods/attach, pods/portforward, nodes/proxy, and workload creation/modification permissions together. Restricting exec alone is insufficient if a principal can create new Pods or privileged/hostPath workloads that access the data another way. Pod security and admission policies and host-access restrictions complement RBAC. Namespaces and NetworkPolicy alone do not create an independent security boundary against a shared cluster administrator. Kubernetes RBAC good practices

In particular, do not classify get nodes/proxy as read-only. It can authorize container command execution through the kubelet API, and that access can bypass Kubernetes audit and admission paths. Collecting API audit alone does not establish coverage of every administrator operation. Node proxy permission risks

Classify business data, API objects, streamed logs, audit logs, images/artifacts, and credentials separately. Record storage locations, transfer destinations, access permissions, and retention. Include application egress and SSM management paths to establish the actual scope of an “on-premises-only data” statement.

Evidence to attach to the security review

These are evidence requirements, not completed inspection results. Do not attach customer identifiers, tokens, Secret values, or real business logs to public documentation.

Review questionEvidenceAcceptance criteria
Is private-only access actually applied?Target-cluster endpoint settings, on-premises DNS answers, DX routing, and boundary flow recordsPublic access disabled and actual private addresses and paths verified; DNS success alone is insufficient
What can AWS reach internally?ENI/subnet ownership, remote CIDRs, VPC/TGW and on-premises routes, and matched SG/firewall rulesOnly approved nodes, backends, and ports allowed; restrictions on other business domains demonstrated
Are allowed and forbidden operations distinguished?Successful logs and approved management operations using synthetic data in an isolated test environment; denied unauthorized identities and destinationsConnectivity and authorization tested separately; a network failure is not a substitute for an authorization-denial test
Who performed which API operation, and when?EKS Kubernetes audit/authentication records, CloudTrail for AWS management APIs, and correlated timestampsDistinguish the two API layers and trace test identity, time, operation, target, and result
What crossed the boundary?VPC Flow Logs, on-premises firewall records, and a separate data-flow inventoryPresent IP/port/allow-deny evidence alongside data classification; do not claim Flow Logs attest TLS payloads or command bodies
Do boundaries survive change and failure?Revalidation and recovery plans for ENI replacement, route changes, DX/VPN failover, and credential renewal/expiryBackup paths preserve policy; untested failover is not labeled safe

Enable the required EKS control-plane log types; Kubernetes audit and CloudTrail have different roles. Audit logs record API events according to the audit policy and level, not every exec input/output or port-forward payload. Design retention, access controls, and sensitive-data handling alongside collection. Control-plane logs, EKS auditing, EKS CloudTrail, Flow Logs limitations

Records can exclude traffic outside the configured capture scope or be delayed or skipped. EKS log delivery is best effort; inspect collection settings and missing-data signals such as Flow Logs SKIPDATA. A missing record alone does not prove that a connection or operation never occurred. Correlate firewall records with explicit allow/deny tests. Flow Logs collection limitations, Troubleshooting missing Flow Logs

Perform validation against approved non-production targets using synthetic data. Establishing the boundary does not require scanning an entire business network, broadly opening production firewalls, or extracting customer data through logs or cp.

Questions security teams commonly ask

“Does opening 10250 allow all of AWS to access internal servers?”

A correctly restricted design allows verified cluster ENI source ranges and authenticated callers, not the entire AWS address space. An IP allowlist alone still does not prove cluster identity, and shared-subnet exposure or excessive administrator permissions remain risks. Present network restrictions together with TLS, authentication, and authorization evidence.

“Does moving webhooks to AWS eliminate inbound connections?”

It can reduce direct connections to on-premises webhooks. The kubelet TCP 10250 requirement remains separate, and cloud-hosted webhooks may have other dependencies. See AWS's webhook guidance for cloud-node placement options.

“Does Hybrid Nodes Gateway make the design outbound-only?”

Hybrid Nodes Gateway uses Cilium VTEP/VXLAN to support hybrid Pod connectivity. It is neither a disconnected-cluster product nor a one-way security gateway. Review gateway and tunnel outer addresses/ports and inner Pod flows separately; do not copy this article's direct-routing table unchanged. AWS Gateway overview

“Can we state that this does not violate network-separation requirements?”

Not from the connection method alone. If the applicable policy permits controlled management connectivity and evidence and organizational approval cover the connections, permissions, and data boundary, record the review scope and conditions with the conclusion. Do not relabel a prohibited connection as permissible merely because it uses DX or a private endpoint.

Glossary

AbbreviationFull name and meaning in this article
VPC / ENIVirtual Private Cloud / Elastic Network Interface: an AWS logical network boundary and a virtual network interface attached within it
SG / NACLSecurity Group / Network Access Control List: stateful allow rules attached to interfaces and stateless allow/deny rules at subnet boundaries, respectively
DLPData Loss Prevention: controls to detect or prevent inappropriate transfer of sensitive data; not an ENI feature
CNI / SNATContainer Network Interface / Source Network Address Translation: the interface specification and implementations for Pod networking, and packet source-address translation
VGW / TGWVirtual Private Gateway / Transit Gateway: gateways used by the selected AWS private-connectivity design
VXLAN / VTEPVirtual Extensible LAN / VXLAN Tunnel Endpoint: a network encapsulation mechanism and its tunnel endpoint, not a one-way control
IAM / RBACIdentity and Access Management / Role-Based Access Control: AWS identity and permission management, and Kubernetes role-based authorization
TLS / IPsec / MACsecTransport Layer Security / Internet Protocol Security / Media Access Control Security: security technologies with different protocol-layer and path coverage
SSMThe service identifier for AWS Systems Manager; this article distinguishes node credential access from optional system-management capabilities

Further reading

< Hybrid Nodes contents | Previous: Hybrid Nodes Gateway >