1. Packages
  2. AWS Classic
  3. API Docs
  4. route53
  5. ResolverRule

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.route53.ResolverRule

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    Provides a Route53 Resolver rule.

    Example Usage

    System rule

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const sys = new aws.route53.ResolverRule("sys", {
        domainName: "subdomain.example.com",
        ruleType: "SYSTEM",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    sys = aws.route53.ResolverRule("sys",
        domain_name="subdomain.example.com",
        rule_type="SYSTEM")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := route53.NewResolverRule(ctx, "sys", &route53.ResolverRuleArgs{
    			DomainName: pulumi.String("subdomain.example.com"),
    			RuleType:   pulumi.String("SYSTEM"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var sys = new Aws.Route53.ResolverRule("sys", new()
        {
            DomainName = "subdomain.example.com",
            RuleType = "SYSTEM",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.route53.ResolverRule;
    import com.pulumi.aws.route53.ResolverRuleArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sys = new ResolverRule("sys", ResolverRuleArgs.builder()        
                .domainName("subdomain.example.com")
                .ruleType("SYSTEM")
                .build());
    
        }
    }
    
    resources:
      sys:
        type: aws:route53:ResolverRule
        properties:
          domainName: subdomain.example.com
          ruleType: SYSTEM
    

    Forward rule

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const fwd = new aws.route53.ResolverRule("fwd", {
        domainName: "example.com",
        name: "example",
        ruleType: "FORWARD",
        resolverEndpointId: foo.id,
        targetIps: [{
            ip: "123.45.67.89",
        }],
        tags: {
            Environment: "Prod",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    fwd = aws.route53.ResolverRule("fwd",
        domain_name="example.com",
        name="example",
        rule_type="FORWARD",
        resolver_endpoint_id=foo["id"],
        target_ips=[aws.route53.ResolverRuleTargetIpArgs(
            ip="123.45.67.89",
        )],
        tags={
            "Environment": "Prod",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/route53"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := route53.NewResolverRule(ctx, "fwd", &route53.ResolverRuleArgs{
    			DomainName:         pulumi.String("example.com"),
    			Name:               pulumi.String("example"),
    			RuleType:           pulumi.String("FORWARD"),
    			ResolverEndpointId: pulumi.Any(foo.Id),
    			TargetIps: route53.ResolverRuleTargetIpArray{
    				&route53.ResolverRuleTargetIpArgs{
    					Ip: pulumi.String("123.45.67.89"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Environment": pulumi.String("Prod"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var fwd = new Aws.Route53.ResolverRule("fwd", new()
        {
            DomainName = "example.com",
            Name = "example",
            RuleType = "FORWARD",
            ResolverEndpointId = foo.Id,
            TargetIps = new[]
            {
                new Aws.Route53.Inputs.ResolverRuleTargetIpArgs
                {
                    Ip = "123.45.67.89",
                },
            },
            Tags = 
            {
                { "Environment", "Prod" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.route53.ResolverRule;
    import com.pulumi.aws.route53.ResolverRuleArgs;
    import com.pulumi.aws.route53.inputs.ResolverRuleTargetIpArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var fwd = new ResolverRule("fwd", ResolverRuleArgs.builder()        
                .domainName("example.com")
                .name("example")
                .ruleType("FORWARD")
                .resolverEndpointId(foo.id())
                .targetIps(ResolverRuleTargetIpArgs.builder()
                    .ip("123.45.67.89")
                    .build())
                .tags(Map.of("Environment", "Prod"))
                .build());
    
        }
    }
    
    resources:
      fwd:
        type: aws:route53:ResolverRule
        properties:
          domainName: example.com
          name: example
          ruleType: FORWARD
          resolverEndpointId: ${foo.id}
          targetIps:
            - ip: 123.45.67.89
          tags:
            Environment: Prod
    

    Create ResolverRule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ResolverRule(name: string, args: ResolverRuleArgs, opts?: CustomResourceOptions);
    @overload
    def ResolverRule(resource_name: str,
                     args: ResolverRuleArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ResolverRule(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     domain_name: Optional[str] = None,
                     rule_type: Optional[str] = None,
                     name: Optional[str] = None,
                     resolver_endpoint_id: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     target_ips: Optional[Sequence[ResolverRuleTargetIpArgs]] = None)
    func NewResolverRule(ctx *Context, name string, args ResolverRuleArgs, opts ...ResourceOption) (*ResolverRule, error)
    public ResolverRule(string name, ResolverRuleArgs args, CustomResourceOptions? opts = null)
    public ResolverRule(String name, ResolverRuleArgs args)
    public ResolverRule(String name, ResolverRuleArgs args, CustomResourceOptions options)
    
    type: aws:route53:ResolverRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ResolverRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ResolverRuleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ResolverRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResolverRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResolverRuleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var resolverRuleResource = new Aws.Route53.ResolverRule("resolverRuleResource", new()
    {
        DomainName = "string",
        RuleType = "string",
        Name = "string",
        ResolverEndpointId = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TargetIps = new[]
        {
            new Aws.Route53.Inputs.ResolverRuleTargetIpArgs
            {
                Ip = "string",
                Port = 0,
                Protocol = "string",
            },
        },
    });
    
    example, err := route53.NewResolverRule(ctx, "resolverRuleResource", &route53.ResolverRuleArgs{
    	DomainName:         pulumi.String("string"),
    	RuleType:           pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	ResolverEndpointId: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TargetIps: route53.ResolverRuleTargetIpArray{
    		&route53.ResolverRuleTargetIpArgs{
    			Ip:       pulumi.String("string"),
    			Port:     pulumi.Int(0),
    			Protocol: pulumi.String("string"),
    		},
    	},
    })
    
    var resolverRuleResource = new ResolverRule("resolverRuleResource", ResolverRuleArgs.builder()        
        .domainName("string")
        .ruleType("string")
        .name("string")
        .resolverEndpointId("string")
        .tags(Map.of("string", "string"))
        .targetIps(ResolverRuleTargetIpArgs.builder()
            .ip("string")
            .port(0)
            .protocol("string")
            .build())
        .build());
    
    resolver_rule_resource = aws.route53.ResolverRule("resolverRuleResource",
        domain_name="string",
        rule_type="string",
        name="string",
        resolver_endpoint_id="string",
        tags={
            "string": "string",
        },
        target_ips=[aws.route53.ResolverRuleTargetIpArgs(
            ip="string",
            port=0,
            protocol="string",
        )])
    
    const resolverRuleResource = new aws.route53.ResolverRule("resolverRuleResource", {
        domainName: "string",
        ruleType: "string",
        name: "string",
        resolverEndpointId: "string",
        tags: {
            string: "string",
        },
        targetIps: [{
            ip: "string",
            port: 0,
            protocol: "string",
        }],
    });
    
    type: aws:route53:ResolverRule
    properties:
        domainName: string
        name: string
        resolverEndpointId: string
        ruleType: string
        tags:
            string: string
        targetIps:
            - ip: string
              port: 0
              protocol: string
    

    ResolverRule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ResolverRule resource accepts the following input properties:

    DomainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    RuleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    Name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    ResolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TargetIps List<ResolverRuleTargetIp>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    DomainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    RuleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    Name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    ResolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    Tags map[string]string
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TargetIps []ResolverRuleTargetIpArgs
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    domainName String
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    ruleType String
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    name String
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    resolverEndpointId String
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    tags Map<String,String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    targetIps List<ResolverRuleTargetIp>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    domainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    ruleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    resolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    tags {[key: string]: string}
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    targetIps ResolverRuleTargetIp[]
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    domain_name str
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    rule_type str
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    name str
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    resolver_endpoint_id str
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    tags Mapping[str, str]
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    target_ips Sequence[ResolverRuleTargetIpArgs]
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    domainName String
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    ruleType String
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    name String
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    resolverEndpointId String
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    tags Map<String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    targetIps List<Property Map>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ResolverRule resource produces the following output properties:

    Arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    ShareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    Id string
    The provider-assigned unique ID for this managed resource.
    OwnerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    ShareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The ARN (Amazon Resource Name) for the resolver rule.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    shareStatus String
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    id string
    The provider-assigned unique ID for this managed resource.
    ownerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    shareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    The ARN (Amazon Resource Name) for the resolver rule.
    id str
    The provider-assigned unique ID for this managed resource.
    owner_id str
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    share_status str
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The ARN (Amazon Resource Name) for the resolver rule.
    id String
    The provider-assigned unique ID for this managed resource.
    ownerId String
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    shareStatus String
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing ResolverRule Resource

    Get an existing ResolverRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ResolverRuleState, opts?: CustomResourceOptions): ResolverRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            domain_name: Optional[str] = None,
            name: Optional[str] = None,
            owner_id: Optional[str] = None,
            resolver_endpoint_id: Optional[str] = None,
            rule_type: Optional[str] = None,
            share_status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            target_ips: Optional[Sequence[ResolverRuleTargetIpArgs]] = None) -> ResolverRule
    func GetResolverRule(ctx *Context, name string, id IDInput, state *ResolverRuleState, opts ...ResourceOption) (*ResolverRule, error)
    public static ResolverRule Get(string name, Input<string> id, ResolverRuleState? state, CustomResourceOptions? opts = null)
    public static ResolverRule get(String name, Output<String> id, ResolverRuleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    DomainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    Name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    OwnerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    ResolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    RuleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    ShareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    Tags Dictionary<string, string>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TargetIps List<ResolverRuleTargetIp>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    Arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    DomainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    Name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    OwnerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    ResolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    RuleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    ShareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    Tags map[string]string
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TargetIps []ResolverRuleTargetIpArgs
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    arn String
    The ARN (Amazon Resource Name) for the resolver rule.
    domainName String
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    name String
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    ownerId String
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    resolverEndpointId String
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    ruleType String
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    shareStatus String
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tags Map<String,String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    targetIps List<ResolverRuleTargetIp>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    arn string
    The ARN (Amazon Resource Name) for the resolver rule.
    domainName string
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    name string
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    ownerId string
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    resolverEndpointId string
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    ruleType string
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    shareStatus string
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tags {[key: string]: string}
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    targetIps ResolverRuleTargetIp[]
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    arn str
    The ARN (Amazon Resource Name) for the resolver rule.
    domain_name str
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    name str
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    owner_id str
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    resolver_endpoint_id str
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    rule_type str
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    share_status str
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tags Mapping[str, str]
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    target_ips Sequence[ResolverRuleTargetIpArgs]
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.
    arn String
    The ARN (Amazon Resource Name) for the resolver rule.
    domainName String
    DNS queries for this domain name are forwarded to the IP addresses that are specified using target_ip.
    name String
    A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
    ownerId String
    When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
    resolverEndpointId String
    The ID of the outbound resolver endpoint that you want to use to route DNS queries to the IP addresses that you specify using target_ip. This argument should only be specified for FORWARD type rules.
    ruleType String
    The rule type. Valid values are FORWARD, SYSTEM and RECURSIVE.
    shareStatus String
    Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account. Values are NOT_SHARED, SHARED_BY_ME or SHARED_WITH_ME
    tags Map<String>
    A map of tags to assign to the resource. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    targetIps List<Property Map>
    Configuration block(s) indicating the IPs that you want Resolver to forward DNS queries to (documented below). This argument should only be specified for FORWARD type rules.

    Supporting Types

    ResolverRuleTargetIp, ResolverRuleTargetIpArgs

    Ip string
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    Port int
    The port at ip that you want to forward DNS queries to. Default value is 53.
    Protocol string
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.
    Ip string
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    Port int
    The port at ip that you want to forward DNS queries to. Default value is 53.
    Protocol string
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.
    ip String
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    port Integer
    The port at ip that you want to forward DNS queries to. Default value is 53.
    protocol String
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.
    ip string
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    port number
    The port at ip that you want to forward DNS queries to. Default value is 53.
    protocol string
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.
    ip str
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    port int
    The port at ip that you want to forward DNS queries to. Default value is 53.
    protocol str
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.
    ip String
    One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses.
    port Number
    The port at ip that you want to forward DNS queries to. Default value is 53.
    protocol String
    The protocol for the resolver endpoint. Valid values can be found in the AWS documentation. Default value is Do53.

    Import

    Using pulumi import, import Route53 Resolver rules using the id. For example:

    $ pulumi import aws:route53/resolverRule:ResolverRule sys rslvr-rr-0123456789abcdef0
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi