Try AWS Native preview for resources not in the classic version.
aws.route53.ResolverRule
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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=[{
"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.
Constructor 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=[{
"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:
- Domain
Name string - DNS queries for this domain name are forwarded to the IP addresses that are specified using
target_ip
. - Rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - Name string
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- Resolver
Endpoint stringId - 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 forFORWARD
type rules. - 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. - Target
Ips List<ResolverRule Target Ip> - 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 string - DNS queries for this domain name are forwarded to the IP addresses that are specified using
target_ip
. - Rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - Name string
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- Resolver
Endpoint stringId - 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 forFORWARD
type rules. - 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. - Target
Ips []ResolverRule Target Ip Args - 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 String - DNS queries for this domain name are forwarded to the IP addresses that are specified using
target_ip
. - rule
Type String - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - name String
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- resolver
Endpoint StringId - 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 forFORWARD
type rules. - 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. - target
Ips List<ResolverRule Target Ip> - 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 string - DNS queries for this domain name are forwarded to the IP addresses that are specified using
target_ip
. - rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - name string
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- resolver
Endpoint stringId - 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 forFORWARD
type rules. - {[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. - target
Ips ResolverRule Target Ip[] - 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
andRECURSIVE
. - name str
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- resolver_
endpoint_ strid - 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 forFORWARD
type rules. - 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[ResolverRule Target Ip Args] - 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 String - DNS queries for this domain name are forwarded to the IP addresses that are specified using
target_ip
. - rule
Type String - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - name String
- A friendly name that lets you easily find a rule in the Resolver dashboard in the Route 53 console.
- resolver
Endpoint StringId - 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 forFORWARD
type rules. - 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. - target
Ips 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.
- Owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- 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
orSHARED_WITH_ME
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN (Amazon Resource Name) for the resolver rule.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- 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
orSHARED_WITH_ME
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) for the resolver rule.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- 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
orSHARED_WITH_ME
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN (Amazon Resource Name) for the resolver rule.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- 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
orSHARED_WITH_ME
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- 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.
- 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
orSHARED_WITH_ME
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN (Amazon Resource Name) for the resolver rule.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- 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
orSHARED_WITH_ME
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
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.
- Arn string
- The ARN (Amazon Resource Name) for the resolver rule.
- Domain
Name 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.
- Owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- Resolver
Endpoint stringId - 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 forFORWARD
type rules. - Rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- 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. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Target
Ips List<ResolverRule Target Ip> - 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.
- Domain
Name 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.
- Owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- Resolver
Endpoint stringId - 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 forFORWARD
type rules. - Rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- 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. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Target
Ips []ResolverRule Target Ip Args - 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.
- domain
Name 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.
- owner
Id String - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- resolver
Endpoint StringId - 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 forFORWARD
type rules. - rule
Type String - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- 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. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - target
Ips List<ResolverRule Target Ip> - 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.
- domain
Name 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.
- owner
Id string - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- resolver
Endpoint stringId - 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 forFORWARD
type rules. - rule
Type string - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- {[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. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - target
Ips ResolverRule Target Ip[] - 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_ strid - 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 forFORWARD
type rules. - rule_
type str - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- 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. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - target_
ips Sequence[ResolverRule Target Ip Args] - 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.
- domain
Name 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.
- owner
Id String - When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.
- resolver
Endpoint StringId - 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 forFORWARD
type rules. - rule
Type String - The rule type. Valid values are
FORWARD
,SYSTEM
andRECURSIVE
. - 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
orSHARED_WITH_ME
- 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. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - target
Ips 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 is53
. - 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 is53
. - 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 is53
. - 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 is53
. - 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 is53
. - 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 is53
. - 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.
Try AWS Native preview for resources not in the classic version.