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

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

aws.route53.ResolverEndpoint

Explore with Pulumi AI

aws logo

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

AWS Classic v6.28.1 published on Thursday, Mar 28, 2024 by Pulumi

    Provides a Route 53 Resolver endpoint resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const foo = new aws.route53.ResolverEndpoint("foo", {
        name: "foo",
        direction: "INBOUND",
        securityGroupIds: [
            sg1.id,
            sg2.id,
        ],
        ipAddresses: [
            {
                subnetId: sn1.id,
            },
            {
                subnetId: sn2.id,
                ip: "10.0.64.4",
            },
        ],
        protocols: [
            "Do53",
            "DoH",
        ],
        tags: {
            Environment: "Prod",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    foo = aws.route53.ResolverEndpoint("foo",
        name="foo",
        direction="INBOUND",
        security_group_ids=[
            sg1["id"],
            sg2["id"],
        ],
        ip_addresses=[
            aws.route53.ResolverEndpointIpAddressArgs(
                subnet_id=sn1["id"],
            ),
            aws.route53.ResolverEndpointIpAddressArgs(
                subnet_id=sn2["id"],
                ip="10.0.64.4",
            ),
        ],
        protocols=[
            "Do53",
            "DoH",
        ],
        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.NewResolverEndpoint(ctx, "foo", &route53.ResolverEndpointArgs{
    			Name:      pulumi.String("foo"),
    			Direction: pulumi.String("INBOUND"),
    			SecurityGroupIds: pulumi.StringArray{
    				sg1.Id,
    				sg2.Id,
    			},
    			IpAddresses: route53.ResolverEndpointIpAddressArray{
    				&route53.ResolverEndpointIpAddressArgs{
    					SubnetId: pulumi.Any(sn1.Id),
    				},
    				&route53.ResolverEndpointIpAddressArgs{
    					SubnetId: pulumi.Any(sn2.Id),
    					Ip:       pulumi.String("10.0.64.4"),
    				},
    			},
    			Protocols: pulumi.StringArray{
    				pulumi.String("Do53"),
    				pulumi.String("DoH"),
    			},
    			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 foo = new Aws.Route53.ResolverEndpoint("foo", new()
        {
            Name = "foo",
            Direction = "INBOUND",
            SecurityGroupIds = new[]
            {
                sg1.Id,
                sg2.Id,
            },
            IpAddresses = new[]
            {
                new Aws.Route53.Inputs.ResolverEndpointIpAddressArgs
                {
                    SubnetId = sn1.Id,
                },
                new Aws.Route53.Inputs.ResolverEndpointIpAddressArgs
                {
                    SubnetId = sn2.Id,
                    Ip = "10.0.64.4",
                },
            },
            Protocols = new[]
            {
                "Do53",
                "DoH",
            },
            Tags = 
            {
                { "Environment", "Prod" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.route53.ResolverEndpoint;
    import com.pulumi.aws.route53.ResolverEndpointArgs;
    import com.pulumi.aws.route53.inputs.ResolverEndpointIpAddressArgs;
    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 foo = new ResolverEndpoint("foo", ResolverEndpointArgs.builder()        
                .name("foo")
                .direction("INBOUND")
                .securityGroupIds(            
                    sg1.id(),
                    sg2.id())
                .ipAddresses(            
                    ResolverEndpointIpAddressArgs.builder()
                        .subnetId(sn1.id())
                        .build(),
                    ResolverEndpointIpAddressArgs.builder()
                        .subnetId(sn2.id())
                        .ip("10.0.64.4")
                        .build())
                .protocols(            
                    "Do53",
                    "DoH")
                .tags(Map.of("Environment", "Prod"))
                .build());
    
        }
    }
    
    resources:
      foo:
        type: aws:route53:ResolverEndpoint
        properties:
          name: foo
          direction: INBOUND
          securityGroupIds:
            - ${sg1.id}
            - ${sg2.id}
          ipAddresses:
            - subnetId: ${sn1.id}
            - subnetId: ${sn2.id}
              ip: 10.0.64.4
          protocols:
            - Do53
            - DoH
          tags:
            Environment: Prod
    

    Create ResolverEndpoint Resource

    new ResolverEndpoint(name: string, args: ResolverEndpointArgs, opts?: CustomResourceOptions);
    @overload
    def ResolverEndpoint(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         direction: Optional[str] = None,
                         ip_addresses: Optional[Sequence[ResolverEndpointIpAddressArgs]] = None,
                         name: Optional[str] = None,
                         protocols: Optional[Sequence[str]] = None,
                         resolver_endpoint_type: Optional[str] = None,
                         security_group_ids: Optional[Sequence[str]] = None,
                         tags: Optional[Mapping[str, str]] = None)
    @overload
    def ResolverEndpoint(resource_name: str,
                         args: ResolverEndpointArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewResolverEndpoint(ctx *Context, name string, args ResolverEndpointArgs, opts ...ResourceOption) (*ResolverEndpoint, error)
    public ResolverEndpoint(string name, ResolverEndpointArgs args, CustomResourceOptions? opts = null)
    public ResolverEndpoint(String name, ResolverEndpointArgs args)
    public ResolverEndpoint(String name, ResolverEndpointArgs args, CustomResourceOptions options)
    
    type: aws:route53:ResolverEndpoint
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ResolverEndpointArgs
    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 ResolverEndpointArgs
    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 ResolverEndpointArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResolverEndpointArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ResolverEndpoint 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 ResolverEndpoint resource accepts the following input properties:

    Direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    IpAddresses List<ResolverEndpointIpAddress>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    SecurityGroupIds List<string>
    The ID of one or more security groups that you want to use to control access to this VPC.
    Name string
    The friendly name of the Route 53 Resolver endpoint.
    Protocols List<string>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    ResolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.
    Direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    IpAddresses []ResolverEndpointIpAddressArgs
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    SecurityGroupIds []string
    The ID of one or more security groups that you want to use to control access to this VPC.
    Name string
    The friendly name of the Route 53 Resolver endpoint.
    Protocols []string
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    ResolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.
    direction String
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    ipAddresses List<ResolverEndpointIpAddress>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    securityGroupIds List<String>
    The ID of one or more security groups that you want to use to control access to this VPC.
    name String
    The friendly name of the Route 53 Resolver endpoint.
    protocols List<String>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType String
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.
    direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    ipAddresses ResolverEndpointIpAddress[]
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    securityGroupIds string[]
    The ID of one or more security groups that you want to use to control access to this VPC.
    name string
    The friendly name of the Route 53 Resolver endpoint.
    protocols string[]
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.
    direction str
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    ip_addresses Sequence[ResolverEndpointIpAddressArgs]
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    security_group_ids Sequence[str]
    The ID of one or more security groups that you want to use to control access to this VPC.
    name str
    The friendly name of the Route 53 Resolver endpoint.
    protocols Sequence[str]
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolver_endpoint_type str
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.
    direction String
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    ipAddresses List<Property Map>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    securityGroupIds List<String>
    The ID of one or more security groups that you want to use to control access to this VPC.
    name String
    The friendly name of the Route 53 Resolver endpoint.
    protocols List<String>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType String
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    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.

    Outputs

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

    Arn string
    The ARN of the Route 53 Resolver endpoint.
    HostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    Id string
    The provider-assigned unique ID for this managed resource.
    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 of the Route 53 Resolver endpoint.
    HostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    Id string
    The provider-assigned unique ID for this managed resource.
    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 of the Route 53 Resolver endpoint.
    hostVpcId String
    The ID of the VPC that you want to create the resolver endpoint in.
    id String
    The provider-assigned unique ID for this managed resource.
    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 of the Route 53 Resolver endpoint.
    hostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    id string
    The provider-assigned unique ID for this managed resource.
    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 of the Route 53 Resolver endpoint.
    host_vpc_id str
    The ID of the VPC that you want to create the resolver endpoint in.
    id str
    The provider-assigned unique ID for this managed resource.
    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 of the Route 53 Resolver endpoint.
    hostVpcId String
    The ID of the VPC that you want to create the resolver endpoint in.
    id String
    The provider-assigned unique ID for this managed resource.
    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 ResolverEndpoint Resource

    Get an existing ResolverEndpoint 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?: ResolverEndpointState, opts?: CustomResourceOptions): ResolverEndpoint
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            direction: Optional[str] = None,
            host_vpc_id: Optional[str] = None,
            ip_addresses: Optional[Sequence[ResolverEndpointIpAddressArgs]] = None,
            name: Optional[str] = None,
            protocols: Optional[Sequence[str]] = None,
            resolver_endpoint_type: Optional[str] = None,
            security_group_ids: Optional[Sequence[str]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None) -> ResolverEndpoint
    func GetResolverEndpoint(ctx *Context, name string, id IDInput, state *ResolverEndpointState, opts ...ResourceOption) (*ResolverEndpoint, error)
    public static ResolverEndpoint Get(string name, Input<string> id, ResolverEndpointState? state, CustomResourceOptions? opts = null)
    public static ResolverEndpoint get(String name, Output<String> id, ResolverEndpointState 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 of the Route 53 Resolver endpoint.
    Direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    HostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    IpAddresses List<ResolverEndpointIpAddress>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    Name string
    The friendly name of the Route 53 Resolver endpoint.
    Protocols List<string>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    ResolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    SecurityGroupIds List<string>
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    Arn string
    The ARN of the Route 53 Resolver endpoint.
    Direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    HostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    IpAddresses []ResolverEndpointIpAddressArgs
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    Name string
    The friendly name of the Route 53 Resolver endpoint.
    Protocols []string
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    ResolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    SecurityGroupIds []string
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    arn String
    The ARN of the Route 53 Resolver endpoint.
    direction String
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    hostVpcId String
    The ID of the VPC that you want to create the resolver endpoint in.
    ipAddresses List<ResolverEndpointIpAddress>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    name String
    The friendly name of the Route 53 Resolver endpoint.
    protocols List<String>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType String
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    securityGroupIds List<String>
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    arn string
    The ARN of the Route 53 Resolver endpoint.
    direction string
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    hostVpcId string
    The ID of the VPC that you want to create the resolver endpoint in.
    ipAddresses ResolverEndpointIpAddress[]
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    name string
    The friendly name of the Route 53 Resolver endpoint.
    protocols string[]
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType string
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    securityGroupIds string[]
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    arn str
    The ARN of the Route 53 Resolver endpoint.
    direction str
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    host_vpc_id str
    The ID of the VPC that you want to create the resolver endpoint in.
    ip_addresses Sequence[ResolverEndpointIpAddressArgs]
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    name str
    The friendly name of the Route 53 Resolver endpoint.
    protocols Sequence[str]
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolver_endpoint_type str
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    security_group_ids Sequence[str]
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    arn String
    The ARN of the Route 53 Resolver endpoint.
    direction String
    The direction of DNS queries to or from the Route 53 Resolver endpoint. Valid values are INBOUND (resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC) or OUTBOUND (resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC).
    hostVpcId String
    The ID of the VPC that you want to create the resolver endpoint in.
    ipAddresses List<Property Map>
    The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound endpoints). Described below.
    name String
    The friendly name of the Route 53 Resolver endpoint.
    protocols List<String>
    The protocols you want to use for the Route 53 Resolver endpoint. Valid values: DoH, Do53, DoH-FIPS.
    resolverEndpointType String
    The Route 53 Resolver endpoint IP address type. Valid values: IPV4, IPV6, DUALSTACK.
    securityGroupIds List<String>
    The ID of one or more security groups that you want to use to control access to this VPC.
    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.

    Supporting Types

    ResolverEndpointIpAddress, ResolverEndpointIpAddressArgs

    SubnetId string
    The ID of the subnet that contains the IP address.
    Ip string
    The IP address in the subnet that you want to use for DNS queries.
    IpId string
    SubnetId string
    The ID of the subnet that contains the IP address.
    Ip string
    The IP address in the subnet that you want to use for DNS queries.
    IpId string
    subnetId String
    The ID of the subnet that contains the IP address.
    ip String
    The IP address in the subnet that you want to use for DNS queries.
    ipId String
    subnetId string
    The ID of the subnet that contains the IP address.
    ip string
    The IP address in the subnet that you want to use for DNS queries.
    ipId string
    subnet_id str
    The ID of the subnet that contains the IP address.
    ip str
    The IP address in the subnet that you want to use for DNS queries.
    ip_id str
    subnetId String
    The ID of the subnet that contains the IP address.
    ip String
    The IP address in the subnet that you want to use for DNS queries.
    ipId String

    Import

    Using pulumi import, import Route 53 Resolver endpoints using the Route 53 Resolver endpoint ID. For example:

    $ pulumi import aws:route53/resolverEndpoint:ResolverEndpoint foo rslvr-in-abcdef01234567890
    

    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.28.1 published on Thursday, Mar 28, 2024 by Pulumi