AWS Networking¶
Nubenetes V2 Elite Portal
You are browsing the AI-Curated V2 Elite Edition. Looking for the exhaustive list of references? Check out the V1 Historical Archive.
Architectural Context
Detailed reference for AWS Networking in the context of Cloud Providers (Hyperscalers).
Cloud Infrastructure¶
AWS¶
API Gateway¶
Architecture¶
- (2020) alexdebrie.com: A Detailed Overview of AWS API Gateway [COMMUNITY-TOOL] โ An extensive architectural analysis of AWS API Gateway, deconstructing HTTP APIs, REST APIs, and WebSockets. Provides deep insights into routing, request validation, and authorization strategies that underpin serverless microservices architectures.
Cross-Account Patterns¶
- (2021) aws.amazon.com: Architecture patterns for consuming private APIs cross-account [ADVANCED LEVEL] [COMMUNITY-TOOL] โ Examines security and network topology blueprints for consuming private APIs across different AWS accounts. Highlights the interaction of VPC endpoints, API Gateway resource policies, and Route 53 resolver rules to secure enterprise SaaS products.
CDN¶
CloudFront¶
- (2016) Amazon CloudFront now supports HTTP/2 [DOCUMENTATION] [COMMUNITY-TOOL] โ Announces native HTTP/2 support in CloudFront, highlighting performance gains from request multiplexing and header compression. A major historical milestone for fast content delivery networks, paving the way for modern responsive web applications.
Edge Security¶
- (2021) aws.amazon.com: Authorization@Edge using cookies: Protect your Amazon CloudFront content from being downloaded by unauthenticated users [ADVANCED LEVEL] [COMMUNITY-TOOL] โ Presents edge security patterns leveraging Lambda@Edge or CloudFront Functions to validate cookies and JWTs. This approach prevents unauthorized downloads of static content directly at the CDN tier, dramatically reducing backend origin load.
Kubernetes Networking¶
Controllers¶
- (2020) Introducing the AWS Load Balancer Controller [ADVANCED LEVEL] [COMMUNITY-TOOL] โ Introduces the Kubernetes-native controller that provisions ALBs and NLBs directly from EKS Ingress and Service objects. A de facto standard in EKS architectures, replacing generic reverse proxies with tightly integrated AWS-managed application delivery controllers.
Load Balancing¶
Announcements¶
- (2016) aws blogs - New โ AWS Application Load Balancer [COMMUNITY-TOOL] โ The foundational blog post introducing AWS ALB in 2016, revolutionizing container and microservices ingress on AWS. Contrasts CLB's limitations with ALB's ability to host multiple target groups on a single instance port, enabling dense ECS/EKS hosting.
Application Load Balancer¶
- (2020) Application Load Balancer [DOCUMENTATION] [COMMUNITY-TOOL] โ The authoritative landing page for AWS ALB, highlighting its Layer 7 request routing capabilities, HTTP/2 support, and WAF integrations. Modern microservices rely on ALB's path-based and host-based routing to expose APIs dynamically.
Configuration Updates¶
- (2024) aws.amazon.com/about-aws: Application Load Balancer enables configuring HTTP client keepalive duration [ADVANCED LEVEL] [DOCUMENTATION] [COMMUNITY-TOOL] โ Details the 2024 update enabling custom HTTP keep-alive duration configurations on ALB. Architects use this feature to align load balancer timeouts with backend server timeouts, effectively eliminating random 502 Bad Gateway errors in microservices.
Serverless Integration¶
- (2020) dashbird.io: AWS Elastic Load Balancing from a Serverless perspective [COMMUNITY-TOOL] โ Analyzes Application Load Balancer configurations when integrated with serverless backends like AWS Lambda. Details pricing, cold-starts, and architectural trade-offs compared to API Gateway. Live systems often choose ALB for cost-effective, high-volume HTTP routing.
Reverse Proxy¶
NGINX Plus¶
- (2016) NGINX Plus on the AWS Cloud: Quick Start Reference Deployment [DOCUMENTATION] [LEGACY] โ A legacy but highly informative deployment blueprint for configuring high-availability NGINX Plus instances on AWS. Explains load-balancing patterns, session persistence, and active health checks that bridge standard EC2 architectures with NGINX's enterprise proxy features.
Security¶
WAF¶
- (2024) AWS WAF enhances rate-based rules to support lower rate limits [ADVANCED LEVEL] [DOCUMENTATION] [COMMUNITY-TOOL] โ Highlights the critical update reducing AWS WAF rate-based rule limits to protect low-traffic APIs and login endpoints from brute-force attacks. Provides developers with more granular rate-limiting controls to prevent application abuse at the edge.
Software Engineering¶
Deployment Patterns¶
Blue-Green¶
ALB¶
- (2021) Fine-tuning blue/green deployments on application load balancer [ADVANCED LEVEL] [COMMUNITY-TOOL] โ Focuses on ALB's advanced routing capabilities to orchestrate safe blue/green deployments by shifting traffic percentages between target groups. A crucial operational pattern for continuous delivery pipelines, minimizing deployment blast radius.
๐ก Explore Related: Googlecloudplatform | Edge Computing | Oraclecloud
๐ See Also: Postman | Cloudflare