You must be logged in to view saved presets
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:
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: {}