volcengine.private_zone.ResolverRule
Explore with Pulumi AI
Provides a resource to manage private zone resolver rule
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var foo = new Volcengine.Private_zone.ResolverRule("foo", new()
{
EndpointId = 346,
ForwardIps = new[]
{
new Volcengine.Private_zone.Inputs.ResolverRuleForwardIpArgs
{
Ip = "10.199.38.19",
Port = 33,
},
},
Type = "OUTBOUND",
Vpcs = new[]
{
new Volcengine.Private_zone.Inputs.ResolverRuleVpcArgs
{
Region = "cn-beijing",
VpcId = "vpc-13f9uuuqfdjb43n6nu5p1****",
},
},
ZoneNames = new[]
{
"www.baidu.com",
},
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/private_zone"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := private_zone.NewResolverRule(ctx, "foo", &private_zone.ResolverRuleArgs{
EndpointId: pulumi.Int(346),
ForwardIps: private_zone.ResolverRuleForwardIpArray{
&private_zone.ResolverRuleForwardIpArgs{
Ip: pulumi.String("10.199.38.19"),
Port: pulumi.Int(33),
},
},
Type: pulumi.String("OUTBOUND"),
Vpcs: private_zone.ResolverRuleVpcArray{
&private_zone.ResolverRuleVpcArgs{
Region: pulumi.String("cn-beijing"),
VpcId: pulumi.String("vpc-13f9uuuqfdjb43n6nu5p1****"),
},
},
ZoneNames: pulumi.StringArray{
pulumi.String("www.baidu.com"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.private_zone.ResolverRule;
import com.pulumi.volcengine.private_zone.ResolverRuleArgs;
import com.pulumi.volcengine.private_zone.inputs.ResolverRuleForwardIpArgs;
import com.pulumi.volcengine.private_zone.inputs.ResolverRuleVpcArgs;
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 ResolverRule("foo", ResolverRuleArgs.builder()
.endpointId(346)
.forwardIps(ResolverRuleForwardIpArgs.builder()
.ip("10.199.38.19")
.port(33)
.build())
.type("OUTBOUND")
.vpcs(ResolverRuleVpcArgs.builder()
.region("cn-beijing")
.vpcId("vpc-13f9uuuqfdjb43n6nu5p1****")
.build())
.zoneNames("www.baidu.com")
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo = volcengine.private_zone.ResolverRule("foo",
endpoint_id=346,
forward_ips=[volcengine.private_zone.ResolverRuleForwardIpArgs(
ip="10.199.38.19",
port=33,
)],
type="OUTBOUND",
vpcs=[volcengine.private_zone.ResolverRuleVpcArgs(
region="cn-beijing",
vpc_id="vpc-13f9uuuqfdjb43n6nu5p1****",
)],
zone_names=["www.baidu.com"])
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const foo = new volcengine.private_zone.ResolverRule("foo", {
endpointId: 346,
forwardIps: [{
ip: "10.199.38.19",
port: 33,
}],
type: "OUTBOUND",
vpcs: [{
region: "cn-beijing",
vpcId: "vpc-13f9uuuqfdjb43n6nu5p1****",
}],
zoneNames: ["www.baidu.com"],
});
resources:
foo:
type: volcengine:private_zone:ResolverRule
properties:
endpointId: 346
forwardIps:
- ip: 10.199.38.19
port: 33
type: OUTBOUND
vpcs:
- region: cn-beijing
vpcId: vpc-13f9uuuqfdjb43n6nu5p1****
zoneNames:
- www.baidu.com
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,
type: Optional[str] = None,
vpcs: Optional[Sequence[ResolverRuleVpcArgs]] = None,
endpoint_id: Optional[int] = None,
forward_ips: Optional[Sequence[ResolverRuleForwardIpArgs]] = None,
line: Optional[int] = None,
name: Optional[str] = None,
zone_names: Optional[Sequence[str]] = 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: volcengine:private_zone: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 Volcengine.Private_zone.ResolverRule("resolverRuleResource", new()
{
Type = "string",
Vpcs = new[]
{
new Volcengine.Private_zone.Inputs.ResolverRuleVpcArgs
{
VpcId = "string",
Region = "string",
},
},
EndpointId = 0,
ForwardIps = new[]
{
new Volcengine.Private_zone.Inputs.ResolverRuleForwardIpArgs
{
Ip = "string",
Port = 0,
},
},
Line = 0,
Name = "string",
ZoneNames = new[]
{
"string",
},
});
example, err := private_zone.NewResolverRule(ctx, "resolverRuleResource", &private_zone.ResolverRuleArgs{
Type: pulumi.String("string"),
Vpcs: private_zone.ResolverRuleVpcArray{
&private_zone.ResolverRuleVpcArgs{
VpcId: pulumi.String("string"),
Region: pulumi.String("string"),
},
},
EndpointId: pulumi.Int(0),
ForwardIps: private_zone.ResolverRuleForwardIpArray{
&private_zone.ResolverRuleForwardIpArgs{
Ip: pulumi.String("string"),
Port: pulumi.Int(0),
},
},
Line: pulumi.Int(0),
Name: pulumi.String("string"),
ZoneNames: pulumi.StringArray{
pulumi.String("string"),
},
})
var resolverRuleResource = new ResolverRule("resolverRuleResource", ResolverRuleArgs.builder()
.type("string")
.vpcs(ResolverRuleVpcArgs.builder()
.vpcId("string")
.region("string")
.build())
.endpointId(0)
.forwardIps(ResolverRuleForwardIpArgs.builder()
.ip("string")
.port(0)
.build())
.line(0)
.name("string")
.zoneNames("string")
.build());
resolver_rule_resource = volcengine.private_zone.ResolverRule("resolverRuleResource",
type="string",
vpcs=[volcengine.private_zone.ResolverRuleVpcArgs(
vpc_id="string",
region="string",
)],
endpoint_id=0,
forward_ips=[volcengine.private_zone.ResolverRuleForwardIpArgs(
ip="string",
port=0,
)],
line=0,
name="string",
zone_names=["string"])
const resolverRuleResource = new volcengine.private_zone.ResolverRule("resolverRuleResource", {
type: "string",
vpcs: [{
vpcId: "string",
region: "string",
}],
endpointId: 0,
forwardIps: [{
ip: "string",
port: 0,
}],
line: 0,
name: "string",
zoneNames: ["string"],
});
type: volcengine:private_zone:ResolverRule
properties:
endpointId: 0
forwardIps:
- ip: string
port: 0
line: 0
name: string
type: string
vpcs:
- region: string
vpcId: string
zoneNames:
- 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:
- Type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- Vpcs
List<Resolver
Rule Vpc> - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- Endpoint
Id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- Forward
Ips List<ResolverRule Forward Ip> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- Name string
- The name of the rule.
- Zone
Names List<string> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- Vpcs
[]Resolver
Rule Vpc Args - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- Endpoint
Id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- Forward
Ips []ResolverRule Forward Ip Args - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- Name string
- The name of the rule.
- Zone
Names []string - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- type String
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
List<Resolver
Rule Vpc> - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- endpoint
Id Integer - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips List<ResolverRule Forward Ip> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line Integer
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name String
- The name of the rule.
- zone
Names List<String> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
Resolver
Rule Vpc[] - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- endpoint
Id number - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips ResolverRule Forward Ip[] - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line number
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name string
- The name of the rule.
- zone
Names string[] - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- type str
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
Sequence[Resolver
Rule Vpc Args] - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- endpoint_
id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward_
ips Sequence[ResolverRule Forward Ip Args] - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name str
- The name of the rule.
- zone_
names Sequence[str] - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- type String
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs List<Property Map>
- The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- endpoint
Id Number - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips List<Property Map> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line Number
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name String
- The name of the rule.
- zone
Names List<String> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResolverRule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
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,
endpoint_id: Optional[int] = None,
forward_ips: Optional[Sequence[ResolverRuleForwardIpArgs]] = None,
line: Optional[int] = None,
name: Optional[str] = None,
type: Optional[str] = None,
vpcs: Optional[Sequence[ResolverRuleVpcArgs]] = None,
zone_names: Optional[Sequence[str]] = 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.
- Endpoint
Id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- Forward
Ips List<ResolverRule Forward Ip> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- Name string
- The name of the rule.
- Type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- Vpcs
List<Resolver
Rule Vpc> - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- Zone
Names List<string> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Endpoint
Id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- Forward
Ips []ResolverRule Forward Ip Args - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- Line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- Name string
- The name of the rule.
- Type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- Vpcs
[]Resolver
Rule Vpc Args - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- Zone
Names []string - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- endpoint
Id Integer - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips List<ResolverRule Forward Ip> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line Integer
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name String
- The name of the rule.
- type String
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
List<Resolver
Rule Vpc> - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- zone
Names List<String> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- endpoint
Id number - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips ResolverRule Forward Ip[] - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line number
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name string
- The name of the rule.
- type string
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
Resolver
Rule Vpc[] - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- zone
Names string[] - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- endpoint_
id int - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward_
ips Sequence[ResolverRule Forward Ip Args] - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line int
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name str
- The name of the rule.
- type str
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs
Sequence[Resolver
Rule Vpc Args] - The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- zone_
names Sequence[str] - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- endpoint
Id Number - Terminal node ID. This parameter is only valid and required when the Type parameter is OUTBOUND.
- forward
Ips List<Property Map> - IP address and port of external DNS server. You can add up to 10 IP addresses. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
- line Number
- The operator of the exit IP address of the recursive DNS server. This parameter is only valid when the Type parameter is LINE and is a required parameter. MOBILE, TELECOM, UNICOM.
- name String
- The name of the rule.
- type String
- Forwarding rule types. OUTBOUND: Forward to external DNS servers. LINE: Set the recursive DNS server used for recursive resolution to the recursive DNS server of the Volcano Engine PublicDNS, and customize the operator's exit IP address for the recursive DNS server.
- vpcs List<Property Map>
- The parameter name is a variable that represents the region where the VPC is located, such as cn-beijing. The parameter value can include one or more VPC IDs, such as vpc-2750bd1. For example, if you associate a VPC in the cn-beijing region with a domain name and the VPC ID is vpc-2d6si87atfh1c58ozfd0nzq8k, the parameter would be "cn-beijing":["vpc-2d6si87atfh1c58ozfd0nzq8k"]. You can add one or more regions. When the Type parameter is OUTBOUND, the VPC region must be the same as the region where the endpoint is located.
- zone
Names List<String> - Domain names associated with forwarding rules. You can enter one or more domain names. Up to 500 domain names are supported. This parameter is only valid when the Type parameter is OUTBOUND and is a required parameter.
Supporting Types
ResolverRuleForwardIp, ResolverRuleForwardIpArgs
ResolverRuleVpc, ResolverRuleVpcArgs
Import
PrivateZoneResolverRule can be imported using the id, e.g.
$ pulumi import volcengine:private_zone/resolverRule:ResolverRule default resource_id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.