AWS Route 53 Resolver Firewall Rule Group

This page shows how to write Terraform and CloudFormation for Route 53 Resolver Firewall Rule Group and write them securely.

aws_route53_resolver_firewall_rule_group (Terraform)

The Firewall Rule Group in Route 53 Resolver can be configured in Terraform with the resource name aws_route53_resolver_firewall_rule_group. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

  • arn optional computed - string
  • id optional computed - string
  • name required - string
  • owner_id optional computed - string
  • share_status optional computed - string
  • tags optional - map from string to string

Explanation in Terraform Registry

Provides a Route 53 Resolver DNS Firewall rule group resource.

AWS::Route53Resolver::FirewallRuleGroup (CloudFormation)

The FirewallRuleGroup in Route53Resolver can be configured in CloudFormation with the resource name AWS::Route53Resolver::FirewallRuleGroup. The following sections describe 4 examples of how to use the resource and its parameters.

Example Usage from GitHub

template.json#L611
    "AWS::Route53Resolver::FirewallRuleGroupAssociation": {
      "Type": "AWS::Route53Resolver::FirewallRuleGroupAssociation",
      "Properties": {}
    },
    "AWS::NetworkFirewall::RuleGroup": {
      "Type": "AWS::NetworkFirewall::RuleGroup",
integ.firewall.expected.json#L260
      "Type": "AWS::Route53Resolver::FirewallRuleGroup",
      "Properties": {
        "FirewallRules": [
          {
            "Action": "BLOCK",
            "BlockResponse": "NODATA",
integ.firewall.expected.json#L260
      "Type": "AWS::Route53Resolver::FirewallRuleGroup",
      "Properties": {
        "FirewallRules": [
          {
            "Action": "BLOCK",
            "BlockResponse": "NODATA",
integ.firewall.expected.json#L260
      "Type": "AWS::Route53Resolver::FirewallRuleGroup",
      "Properties": {
        "FirewallRules": [
          {
            "Action": "BLOCK",
            "BlockResponse": "NODATA",

Parameters

Explanation in CloudFormation Registry

High-level information for a firewall rule group. A firewall rule group is a collection of rules that DNS Firewall uses to filter DNS network traffic for a VPC. To retrieve the rules for the rule group, call ListFirewallRules.

Frequently asked questions

What is AWS Route 53 Resolver Firewall Rule Group?

AWS Route 53 Resolver Firewall Rule Group is a resource for Route 53 Resolver of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Route 53 Resolver Firewall Rule Group?

For CloudFormation, the mhlabs/aws-icons-directory, manishmittal12/aws-cdk and rajmbnz/aws-cdk source code examples are useful. See the CloudFormation Example section for further details.