Configuration templates to create AWS Network Firewall related settings including Firewall endpoints, Firewall Rule Policies, and Firewall Rule Groups (Stateful and Stateless) used to deploy network protections for VPC resources by enforcing traffic flows, filtering URLs, and inspecting traffic for vulnerabilities using IPS signatures.
The following resources are available for configuration:
Rule Groups – Reusable set of criteria for inspecting and handling network traffic. There are two types of rule groups:
Stateful – Defines criteria for examining a packet in the context of traffic flow and of other traffic that's related to the packet. Stateful rule groups are available in the following categories:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
NetworkFirewall:
Type: 'AWS::NetworkFirewall::Firewall'
Properties:
FirewallName: network-firewall
VpcId: ''
SubnetMappings:
- SubnetId: ''
FirewallPolicyArn:
Ref: FirewallPolicy
DeleteProtection: false
FirewallPolicyChangeProtection: false
SubnetChangeProtection: false
Tags:
- Key: Name
Value: network-firewall
FirewallPolicy:
Type: 'AWS::NetworkFirewall::FirewallPolicy'
Properties:
FirewallPolicyName: firewallpolicy
FirewallPolicy:
StatelessDefaultActions:
- 'aws:forward_to_sfe'
StatelessFragmentDefaultActions:
- 'aws:forward_to_sfe'
Parameters: {}
Metadata: {}
Conditions: {}