Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
Configuration to create a Network Load Balancer (NLB), target groups and listeners in an AWS VPC to load balance incoming traffic to targets such as EC2 instances or ALBs. The NLB also includes health checks to ensure the state of the targets before forwarding traffic.
This template includes settings for configuring:
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
NetworkLoadBalancer:
Type: "AWS::ElasticLoadBalancingV2::LoadBalancer"
Properties:
Type: "network"
Scheme: "internet-facing"
IpAddressType: "ipv4"
SubnetMappings:
- SubnetId: ""
LoadBalancerAttributes:
- Key: "deletion_protection.enabled"
Value: false
- Key: "access_logs.s3.enabled"
Value: false
- Key: "load_balancing.cross_zone.enabled"
Value: false
Parameters: {}
Metadata: {}
Conditions: {}