Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
Configuration template to create a customer managed Prefix List with a set of IPv4 or IPv6 CIDR blocks. A prefix list supports up to 1000 entries, and can be referenced in security groups and in subnet route table entries.
Use the following format for the address entries:
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
ManagedPrefixList:
Type: "AWS::EC2::PrefixList"
Properties:
PrefixListName: "ManagedPrefixList"
AddressFamily: "IPv4"
MaxEntries: 100
Entries: []
Parameters: {}
Metadata: {}
Conditions: {}