Try AWS Native preview for resources not in the classic version.
aws.route53.ResolverEndpoint
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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=[
{
"subnetId": sn1["id"],
},
{
"subnetId": 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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResolverEndpoint(name: string, args: ResolverEndpointArgs, opts?: CustomResourceOptions);
@overload
def ResolverEndpoint(resource_name: str,
args: ResolverEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResolverEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
direction: Optional[str] = None,
ip_addresses: Optional[Sequence[ResolverEndpointIpAddressArgs]] = None,
security_group_ids: Optional[Sequence[str]] = None,
name: Optional[str] = None,
protocols: Optional[Sequence[str]] = None,
resolver_endpoint_type: Optional[str] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var resolverEndpointResource = new Aws.Route53.ResolverEndpoint("resolverEndpointResource", new()
{
Direction = "string",
IpAddresses = new[]
{
new Aws.Route53.Inputs.ResolverEndpointIpAddressArgs
{
SubnetId = "string",
Ip = "string",
IpId = "string",
},
},
SecurityGroupIds = new[]
{
"string",
},
Name = "string",
Protocols = new[]
{
"string",
},
ResolverEndpointType = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := route53.NewResolverEndpoint(ctx, "resolverEndpointResource", &route53.ResolverEndpointArgs{
Direction: pulumi.String("string"),
IpAddresses: route53.ResolverEndpointIpAddressArray{
&route53.ResolverEndpointIpAddressArgs{
SubnetId: pulumi.String("string"),
Ip: pulumi.String("string"),
IpId: pulumi.String("string"),
},
},
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
Protocols: pulumi.StringArray{
pulumi.String("string"),
},
ResolverEndpointType: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var resolverEndpointResource = new ResolverEndpoint("resolverEndpointResource", ResolverEndpointArgs.builder()
.direction("string")
.ipAddresses(ResolverEndpointIpAddressArgs.builder()
.subnetId("string")
.ip("string")
.ipId("string")
.build())
.securityGroupIds("string")
.name("string")
.protocols("string")
.resolverEndpointType("string")
.tags(Map.of("string", "string"))
.build());
resolver_endpoint_resource = aws.route53.ResolverEndpoint("resolverEndpointResource",
direction="string",
ip_addresses=[{
"subnetId": "string",
"ip": "string",
"ipId": "string",
}],
security_group_ids=["string"],
name="string",
protocols=["string"],
resolver_endpoint_type="string",
tags={
"string": "string",
})
const resolverEndpointResource = new aws.route53.ResolverEndpoint("resolverEndpointResource", {
direction: "string",
ipAddresses: [{
subnetId: "string",
ip: "string",
ipId: "string",
}],
securityGroupIds: ["string"],
name: "string",
protocols: ["string"],
resolverEndpointType: "string",
tags: {
string: "string",
},
});
type: aws:route53:ResolverEndpoint
properties:
direction: string
ipAddresses:
- ip: string
ipId: string
subnetId: string
name: string
protocols:
- string
resolverEndpointType: string
securityGroupIds:
- string
tags:
string: string
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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - Ip
Addresses List<ResolverEndpoint Ip Address> - 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 List<string>Ids - 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
. - Resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - Ip
Addresses []ResolverEndpoint Ip Address Args - 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 []stringIds - 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
. - Resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - ip
Addresses List<ResolverEndpoint Ip Address> - 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 List<String>Ids - 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
. - resolver
Endpoint StringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - ip
Addresses ResolverEndpoint Ip Address[] - 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 string[]Ids - 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
. - resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - {[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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - ip_
addresses Sequence[ResolverEndpoint Ip Address Args] - 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_ Sequence[str]ids - 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_ strtype - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - ip
Addresses 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.
- security
Group List<String>Ids - 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
. - resolver
Endpoint StringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - 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.
- Host
Vpc stringId - 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.
- 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 of the Route 53 Resolver endpoint.
- Host
Vpc stringId - 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.
- 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 of the Route 53 Resolver endpoint.
- host
Vpc StringId - 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.
- 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 of the Route 53 Resolver endpoint.
- host
Vpc stringId - 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.
- {[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 of the Route 53 Resolver endpoint.
- host_
vpc_ strid - 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.
- 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 of the Route 53 Resolver endpoint.
- host
Vpc StringId - 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.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - Host
Vpc stringId - The ID of the VPC that you want to create the resolver endpoint in.
- Ip
Addresses List<ResolverEndpoint Ip Address> - 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
. - Resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - Security
Group List<string>Ids - The ID of one or more security groups that you want to use to control access to this VPC.
- 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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - Host
Vpc stringId - The ID of the VPC that you want to create the resolver endpoint in.
- Ip
Addresses []ResolverEndpoint Ip Address Args - 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
. - Resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - Security
Group []stringIds - The ID of one or more security groups that you want to use to control access to this VPC.
- 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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - host
Vpc StringId - The ID of the VPC that you want to create the resolver endpoint in.
- ip
Addresses List<ResolverEndpoint Ip Address> - 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
. - resolver
Endpoint StringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - security
Group List<String>Ids - The ID of one or more security groups that you want to use to control access to this VPC.
- 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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - host
Vpc stringId - The ID of the VPC that you want to create the resolver endpoint in.
- ip
Addresses ResolverEndpoint Ip Address[] - 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
. - resolver
Endpoint stringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - security
Group string[]Ids - The ID of one or more security groups that you want to use to control access to this VPC.
- {[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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - host_
vpc_ strid - The ID of the VPC that you want to create the resolver endpoint in.
- ip_
addresses Sequence[ResolverEndpoint Ip Address Args] - 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_ strtype - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - security_
group_ Sequence[str]ids - The ID of one or more security groups that you want to use to control access to this VPC.
- 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.
- 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) orOUTBOUND
(resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC). - host
Vpc StringId - The ID of the VPC that you want to create the resolver endpoint in.
- ip
Addresses 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
. - resolver
Endpoint StringType - The Route 53 Resolver endpoint IP address type. Valid values:
IPV4
,IPV6
,DUALSTACK
. - security
Group List<String>Ids - The ID of one or more security groups that you want to use to control access to this VPC.
- 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.
Supporting Types
ResolverEndpointIpAddress, ResolverEndpointIpAddressArgs
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
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.