AWS Route 53 Resolver Firewall Domain List

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

aws_route53_resolver_firewall_domain_list (Terraform)

The Firewall Domain List in Route 53 Resolver can be configured in Terraform with the resource name aws_route53_resolver_firewall_domain_list. 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
  • domains optional - set of string
  • id optional computed - string
  • name required - string
  • tags optional - map from string to string

Explanation in Terraform Registry

Provides a Route 53 Resolver DNS Firewall domain list resource.

AWS::Route53Resolver::FirewallDomainList (CloudFormation)

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

Example Usage from GitHub

integ.firewall.expected.json#L200
      "Type": "AWS::Route53Resolver::FirewallDomainList",
      "Properties": {
        "Domains": [
          "bad-domain.com",
          "bot-domain.net"
        ]
integ.firewall.expected.json#L200
      "Type": "AWS::Route53Resolver::FirewallDomainList",
      "Properties": {
        "Domains": [
          "bad-domain.com",
          "bot-domain.net"
        ]
integ.firewall.expected.json#L200
      "Type": "AWS::Route53Resolver::FirewallDomainList",
      "Properties": {
        "Domains": [
          "bad-domain.com",
          "bot-domain.net"
        ]
template.json#L1851
    "AWS::Route53Resolver::FirewallDomainList": {
      "Type": "AWS::Route53Resolver::FirewallDomainList",
      "Properties": {}
    },
    "AWS::Pinpoint::APNSSandboxChannel": {
      "Type": "AWS::Pinpoint::APNSSandboxChannel",

Parameters

Explanation in CloudFormation Registry

High-level information about a list of firewall domains for use in a AWS::Route53Resolver::FirewallRule. This is returned by GetFirewallDomainList.

To retrieve the domains that are defined for this domain list, call ListFirewallDomains.

Frequently asked questions

What is AWS Route 53 Resolver Firewall Domain List?

AWS Route 53 Resolver Firewall Domain List 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 Domain List?

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