在把外部的 DNS 查询请求转发到解析器的场景中,您需要创建终端节点。收到解析器转发的 DNS 查询请求后,终端节点出站终端节点会把 DNS 查询请求转发到外部的 DNS 服务器。收到来自外部的 DNS 查询请求后,入站终端节点会把 DNS 查询请求转发到解析器。
Example Usage
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
Example coming soon!
resources:
privateZoneResolverEndpointDemo:
type: volcenginecc:privatezone:ResolverEndpoint
name: PrivateZoneResolverEndpointDemo
properties:
name: PrivateZoneResolverEndpointDemo
vpcId: vpc-3nrh1tqschwcg931eaqxxxxx
endpointType: IPv4
ipConfigs:
- az_id: cn-beijing-a
subnet_id: subnet-bt50na0bf6kg5h0b2u1xxxxx
ip: 192.168.xx.44
- az_id: cn-beijing-b
subnet_id: subnet-1a14u8n59jdvk8nvepjyxxxxx
ip: 192.168.xx.154
projectName: default
tags:
- key: env
value: test
vpcRegion: cn-beijing
direction: OUTBOUND
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,
name: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_region: Optional[str] = None,
direction: Optional[str] = None,
endpoint_type: Optional[str] = None,
ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
project_name: Optional[str] = None,
tags: Optional[Sequence[ResolverEndpointTagArgs]] = 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: volcenginecc:privatezone: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 Volcenginecc.Privatezone.ResolverEndpoint("resolverEndpointResource", new()
{
Name = "string",
VpcId = "string",
VpcRegion = "string",
Direction = "string",
EndpointType = "string",
IpConfigs = new[]
{
new Volcenginecc.Privatezone.Inputs.ResolverEndpointIpConfigArgs
{
AzId = "string",
Ip = "string",
Ipv6 = "string",
SubnetId = "string",
},
},
ProjectName = "string",
Tags = new[]
{
new Volcenginecc.Privatezone.Inputs.ResolverEndpointTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := privatezone.NewResolverEndpoint(ctx, "resolverEndpointResource", &privatezone.ResolverEndpointArgs{
Name: pulumi.String("string"),
VpcId: pulumi.String("string"),
VpcRegion: pulumi.String("string"),
Direction: pulumi.String("string"),
EndpointType: pulumi.String("string"),
IpConfigs: privatezone.ResolverEndpointIpConfigArray{
&privatezone.ResolverEndpointIpConfigArgs{
AzId: pulumi.String("string"),
Ip: pulumi.String("string"),
Ipv6: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
},
ProjectName: pulumi.String("string"),
Tags: privatezone.ResolverEndpointTagArray{
&privatezone.ResolverEndpointTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var resolverEndpointResource = new ResolverEndpoint("resolverEndpointResource", ResolverEndpointArgs.builder()
.name("string")
.vpcId("string")
.vpcRegion("string")
.direction("string")
.endpointType("string")
.ipConfigs(ResolverEndpointIpConfigArgs.builder()
.azId("string")
.ip("string")
.ipv6("string")
.subnetId("string")
.build())
.projectName("string")
.tags(ResolverEndpointTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
resolver_endpoint_resource = volcenginecc.privatezone.ResolverEndpoint("resolverEndpointResource",
name="string",
vpc_id="string",
vpc_region="string",
direction="string",
endpoint_type="string",
ip_configs=[{
"az_id": "string",
"ip": "string",
"ipv6": "string",
"subnet_id": "string",
}],
project_name="string",
tags=[{
"key": "string",
"value": "string",
}])
const resolverEndpointResource = new volcenginecc.privatezone.ResolverEndpoint("resolverEndpointResource", {
name: "string",
vpcId: "string",
vpcRegion: "string",
direction: "string",
endpointType: "string",
ipConfigs: [{
azId: "string",
ip: "string",
ipv6: "string",
subnetId: "string",
}],
projectName: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: volcenginecc:privatezone:ResolverEndpoint
properties:
direction: string
endpointType: string
ipConfigs:
- azId: string
ip: string
ipv6: string
subnetId: string
name: string
projectName: string
tags:
- key: string
value: string
vpcId: string
vpcRegion: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ResolverEndpoint resource accepts the following input properties:
- Name string
- 终端节点的名称。支持 UTF-8 格式。
- Vpc
Id string - 终端节点所在的 VPC 的 ID。
- Vpc
Region string - 终端节点所在的 VPC 的地域。
- Direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- Endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- Ip
Configs List<Volcengine.Resolver Endpoint Ip Config> - Project
Name string - 终端节点所属的项目名称。默认为 default。
-
List<Volcengine.
Resolver Endpoint Tag>
- Name string
- 终端节点的名称。支持 UTF-8 格式。
- Vpc
Id string - 终端节点所在的 VPC 的 ID。
- Vpc
Region string - 终端节点所在的 VPC 的地域。
- Direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- Endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- Ip
Configs []ResolverEndpoint Ip Config Args - Project
Name string - 终端节点所属的项目名称。默认为 default。
-
[]Resolver
Endpoint Tag Args
- name String
- 终端节点的名称。支持 UTF-8 格式。
- vpc
Id String - 终端节点所在的 VPC 的 ID。
- vpc
Region String - 终端节点所在的 VPC 的地域。
- direction String
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Type String - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs List<ResolverEndpoint Ip Config> - project
Name String - 终端节点所属的项目名称。默认为 default。
-
List<Resolver
Endpoint Tag>
- name string
- 终端节点的名称。支持 UTF-8 格式。
- vpc
Id string - 终端节点所在的 VPC 的 ID。
- vpc
Region string - 终端节点所在的 VPC 的地域。
- direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs ResolverEndpoint Ip Config[] - project
Name string - 终端节点所属的项目名称。默认为 default。
-
Resolver
Endpoint Tag[]
- name str
- 终端节点的名称。支持 UTF-8 格式。
- vpc_
id str - 终端节点所在的 VPC 的 ID。
- vpc_
region str - 终端节点所在的 VPC 的地域。
- direction str
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint_
type str - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip_
configs Sequence[ResolverEndpoint Ip Config Args] - project_
name str - 终端节点所属的项目名称。默认为 default。
-
Sequence[Resolver
Endpoint Tag Args]
- name String
- 终端节点的名称。支持 UTF-8 格式。
- vpc
Id String - 终端节点所在的 VPC 的 ID。
- vpc
Region String - 终端节点所在的 VPC 的地域。
- direction String
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Type String - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs List<Property Map> - project
Name String - 终端节点所属的项目名称。默认为 default。
- List<Property Map>
Outputs
All input properties are implicitly available as output properties. Additionally, the ResolverEndpoint resource produces the following output properties:
- Created
Time string - 创建时间
- Endpoint
Id string - 终端节点的 ID。
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- Status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- Updated
Time string - 更新时间
- Created
Time string - 创建时间
- Endpoint
Id string - 终端节点的 ID。
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- Status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- Updated
Time string - 更新时间
- created
Time String - 创建时间
- endpoint
Id String - 终端节点的 ID。
- id String
- The provider-assigned unique ID for this managed resource.
- security
Group StringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status String
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- updated
Time String - 更新时间
- created
Time string - 创建时间
- endpoint
Id string - 终端节点的 ID。
- id string
- The provider-assigned unique ID for this managed resource.
- security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- updated
Time string - 更新时间
- created_
time str - 创建时间
- endpoint_
id str - 终端节点的 ID。
- id str
- The provider-assigned unique ID for this managed resource.
- security_
group_ strid - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status str
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- updated_
time str - 更新时间
- created
Time String - 创建时间
- endpoint
Id String - 终端节点的 ID。
- id String
- The provider-assigned unique ID for this managed resource.
- security
Group StringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status String
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- updated
Time String - 更新时间
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,
created_time: Optional[str] = None,
direction: Optional[str] = None,
endpoint_id: Optional[str] = None,
endpoint_type: Optional[str] = None,
ip_configs: Optional[Sequence[ResolverEndpointIpConfigArgs]] = None,
name: Optional[str] = None,
project_name: Optional[str] = None,
security_group_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[ResolverEndpointTagArgs]] = None,
updated_time: Optional[str] = None,
vpc_id: Optional[str] = None,
vpc_region: Optional[str] = None) -> ResolverEndpointfunc 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)resources: _: type: volcenginecc:privatezone:ResolverEndpoint get: id: ${id}- 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.
- Created
Time string - 创建时间
- Direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- Endpoint
Id string - 终端节点的 ID。
- Endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- Ip
Configs List<Volcengine.Resolver Endpoint Ip Config> - Name string
- 终端节点的名称。支持 UTF-8 格式。
- Project
Name string - 终端节点所属的项目名称。默认为 default。
- Security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- Status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
-
List<Volcengine.
Resolver Endpoint Tag> - Updated
Time string - 更新时间
- Vpc
Id string - 终端节点所在的 VPC 的 ID。
- Vpc
Region string - 终端节点所在的 VPC 的地域。
- Created
Time string - 创建时间
- Direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- Endpoint
Id string - 终端节点的 ID。
- Endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- Ip
Configs []ResolverEndpoint Ip Config Args - Name string
- 终端节点的名称。支持 UTF-8 格式。
- Project
Name string - 终端节点所属的项目名称。默认为 default。
- Security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- Status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
-
[]Resolver
Endpoint Tag Args - Updated
Time string - 更新时间
- Vpc
Id string - 终端节点所在的 VPC 的 ID。
- Vpc
Region string - 终端节点所在的 VPC 的地域。
- created
Time String - 创建时间
- direction String
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Id String - 终端节点的 ID。
- endpoint
Type String - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs List<ResolverEndpoint Ip Config> - name String
- 终端节点的名称。支持 UTF-8 格式。
- project
Name String - 终端节点所属的项目名称。默认为 default。
- security
Group StringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status String
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
-
List<Resolver
Endpoint Tag> - updated
Time String - 更新时间
- vpc
Id String - 终端节点所在的 VPC 的 ID。
- vpc
Region String - 终端节点所在的 VPC 的地域。
- created
Time string - 创建时间
- direction string
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Id string - 终端节点的 ID。
- endpoint
Type string - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs ResolverEndpoint Ip Config[] - name string
- 终端节点的名称。支持 UTF-8 格式。
- project
Name string - 终端节点所属的项目名称。默认为 default。
- security
Group stringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status string
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
-
Resolver
Endpoint Tag[] - updated
Time string - 更新时间
- vpc
Id string - 终端节点所在的 VPC 的 ID。
- vpc
Region string - 终端节点所在的 VPC 的地域。
- created_
time str - 创建时间
- direction str
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint_
id str - 终端节点的 ID。
- endpoint_
type str - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip_
configs Sequence[ResolverEndpoint Ip Config Args] - name str
- 终端节点的名称。支持 UTF-8 格式。
- project_
name str - 终端节点所属的项目名称。默认为 default。
- security_
group_ strid - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status str
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
-
Sequence[Resolver
Endpoint Tag Args] - updated_
time str - 更新时间
- vpc_
id str - 终端节点所在的 VPC 的 ID。
- vpc_
region str - 终端节点所在的 VPC 的地域。
- created
Time String - 创建时间
- direction String
- 终端节点的 DNS 请求转发方向。OUTBOUND:(默认)出站终端节点,把来自 VPC 内的 DNS 查询请求转发到外部的 DNS 服务器。INBOUND:入站终端节点,把来自外部的 DNS 查询请求转发到解析器。
- endpoint
Id String - 终端节点的 ID。
- endpoint
Type String - 终端节点类型。IPv4:IPv4 节点。DualStack:双栈节点。
- ip
Configs List<Property Map> - name String
- 终端节点的名称。支持 UTF-8 格式。
- project
Name String - 终端节点所属的项目名称。默认为 default。
- security
Group StringId - 适用于终端节点 IP 地址的安全组 ID。终端节点默认会使用预设安全组:对于出站终端节点:入方向拒绝流量通行;出方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口。对于入站终端节点:入方向放通 0.0.0.0/0 的 TCP 53 端口和 UDP 53 端口;出方向拒绝流量通行。
- status String
- 终端节点的状态。Creating:创建中。Running:运行中。Updating:更新中。Error:运行异常。
- List<Property Map>
- updated
Time String - 更新时间
- vpc
Id String - 终端节点所在的 VPC 的 ID。
- vpc
Region String - 终端节点所在的 VPC 的地域。
Supporting Types
ResolverEndpointIpConfig, ResolverEndpointIpConfigArgs
ResolverEndpointTag, ResolverEndpointTagArgs
Import
$ pulumi import volcenginecc:privatezone/resolverEndpoint:ResolverEndpoint example "endpoint_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
