1. Packages
  2. Volcengine
  3. API Docs
  4. dns
  5. Zone
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

volcengine.dns.Zone

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine

    Provides a resource to manage dns zone

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@volcengine/pulumi";
    
    const foo = new volcengine.dns.Zone("foo", {
        projectName: "xxx",
        remark: "xxx",
        tags: [{
            key: "xx",
            value: "xx",
        }],
        zoneName: "xxxx.com",
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.dns.Zone("foo",
        project_name="xxx",
        remark="xxx",
        tags=[volcengine.dns.ZoneTagArgs(
            key="xx",
            value="xx",
        )],
        zone_name="xxxx.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/dns"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dns.NewZone(ctx, "foo", &dns.ZoneArgs{
    			ProjectName: pulumi.String("xxx"),
    			Remark:      pulumi.String("xxx"),
    			Tags: dns.ZoneTagArray{
    				&dns.ZoneTagArgs{
    					Key:   pulumi.String("xx"),
    					Value: pulumi.String("xx"),
    				},
    			},
    			ZoneName: pulumi.String("xxxx.com"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Volcengine.Dns.Zone("foo", new()
        {
            ProjectName = "xxx",
            Remark = "xxx",
            Tags = new[]
            {
                new Volcengine.Dns.Inputs.ZoneTagArgs
                {
                    Key = "xx",
                    Value = "xx",
                },
            },
            ZoneName = "xxxx.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.dns.Zone;
    import com.pulumi.volcengine.dns.ZoneArgs;
    import com.pulumi.volcengine.dns.inputs.ZoneTagArgs;
    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 Zone("foo", ZoneArgs.builder()        
                .projectName("xxx")
                .remark("xxx")
                .tags(ZoneTagArgs.builder()
                    .key("xx")
                    .value("xx")
                    .build())
                .zoneName("xxxx.com")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: volcengine:dns:Zone
        properties:
          projectName: xxx
          remark: xxx
          tags:
            - key: xx
              value: xx
          zoneName: xxxx.com
    

    Create Zone Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Zone(name: string, args: ZoneArgs, opts?: CustomResourceOptions);
    @overload
    def Zone(resource_name: str,
             args: ZoneArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Zone(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             zone_name: Optional[str] = None,
             project_name: Optional[str] = None,
             remark: Optional[str] = None,
             tags: Optional[Sequence[ZoneTagArgs]] = None)
    func NewZone(ctx *Context, name string, args ZoneArgs, opts ...ResourceOption) (*Zone, error)
    public Zone(string name, ZoneArgs args, CustomResourceOptions? opts = null)
    public Zone(String name, ZoneArgs args)
    public Zone(String name, ZoneArgs args, CustomResourceOptions options)
    
    type: volcengine:dns:Zone
    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 ZoneArgs
    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 ZoneArgs
    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 ZoneArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ZoneArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ZoneArgs
    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 zoneResource = new Volcengine.Dns.Zone("zoneResource", new()
    {
        ZoneName = "string",
        ProjectName = "string",
        Remark = "string",
        Tags = new[]
        {
            new Volcengine.Dns.Inputs.ZoneTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := dns.NewZone(ctx, "zoneResource", &dns.ZoneArgs{
    	ZoneName:    pulumi.String("string"),
    	ProjectName: pulumi.String("string"),
    	Remark:      pulumi.String("string"),
    	Tags: dns.ZoneTagArray{
    		&dns.ZoneTagArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    })
    
    var zoneResource = new Zone("zoneResource", ZoneArgs.builder()
        .zoneName("string")
        .projectName("string")
        .remark("string")
        .tags(ZoneTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    zone_resource = volcengine.dns.Zone("zoneResource",
        zone_name="string",
        project_name="string",
        remark="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const zoneResource = new volcengine.dns.Zone("zoneResource", {
        zoneName: "string",
        projectName: "string",
        remark: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: volcengine:dns:Zone
    properties:
        projectName: string
        remark: string
        tags:
            - key: string
              value: string
        zoneName: string
    

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

    ZoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    ProjectName string
    The project to which the domain name belongs. The default value is default.
    Remark string
    The remark for the domain.
    Tags List<ZoneTag>
    Tags.
    ZoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    ProjectName string
    The project to which the domain name belongs. The default value is default.
    Remark string
    The remark for the domain.
    Tags []ZoneTagArgs
    Tags.
    zoneName String
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    projectName String
    The project to which the domain name belongs. The default value is default.
    remark String
    The remark for the domain.
    tags List<ZoneTag>
    Tags.
    zoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    projectName string
    The project to which the domain name belongs. The default value is default.
    remark string
    The remark for the domain.
    tags ZoneTag[]
    Tags.
    zone_name str
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    project_name str
    The project to which the domain name belongs. The default value is default.
    remark str
    The remark for the domain.
    tags Sequence[ZoneTagArgs]
    Tags.
    zoneName String
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    projectName String
    The project to which the domain name belongs. The default value is default.
    remark String
    The remark for the domain.
    tags List<Property Map>
    Tags.

    Outputs

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

    AllocateDnsServerLists List<string>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    AutoRenew bool
    Whether automatic domain renewal is enabled.
    DnsSecurity string
    The version of DNS DDoS protection service.
    ExpiredTime int
    The expiration time of the domain.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    IsNsCorrect bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    IsSubDomain bool
    Whether the domain is a subdomain.
    RealDnsServerLists List<string>
    The list of DNS servers actually used by the domain.
    RecordCount int
    The total number of DNS records under the domain.
    Stage int
    The status of the domain.
    SubDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    TradeCode string
    The edition of the domain.
    UpdatedAt string
    The update time of the domain.
    Zid int
    The ID of the domain.
    AllocateDnsServerLists []string
    The list of DNS servers allocated to the domain by BytePlus DNS.
    AutoRenew bool
    Whether automatic domain renewal is enabled.
    DnsSecurity string
    The version of DNS DDoS protection service.
    ExpiredTime int
    The expiration time of the domain.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    IsNsCorrect bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    IsSubDomain bool
    Whether the domain is a subdomain.
    RealDnsServerLists []string
    The list of DNS servers actually used by the domain.
    RecordCount int
    The total number of DNS records under the domain.
    Stage int
    The status of the domain.
    SubDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    TradeCode string
    The edition of the domain.
    UpdatedAt string
    The update time of the domain.
    Zid int
    The ID of the domain.
    allocateDnsServerLists List<String>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew Boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity String
    The version of DNS DDoS protection service.
    expiredTime Integer
    The expiration time of the domain.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceNo String
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect Boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain Boolean
    Whether the domain is a subdomain.
    realDnsServerLists List<String>
    The list of DNS servers actually used by the domain.
    recordCount Integer
    The total number of DNS records under the domain.
    stage Integer
    The status of the domain.
    subDomainHost String
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tradeCode String
    The edition of the domain.
    updatedAt String
    The update time of the domain.
    zid Integer
    The ID of the domain.
    allocateDnsServerLists string[]
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity string
    The version of DNS DDoS protection service.
    expiredTime number
    The expiration time of the domain.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain boolean
    Whether the domain is a subdomain.
    realDnsServerLists string[]
    The list of DNS servers actually used by the domain.
    recordCount number
    The total number of DNS records under the domain.
    stage number
    The status of the domain.
    subDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tradeCode string
    The edition of the domain.
    updatedAt string
    The update time of the domain.
    zid number
    The ID of the domain.
    allocate_dns_server_lists Sequence[str]
    The list of DNS servers allocated to the domain by BytePlus DNS.
    auto_renew bool
    Whether automatic domain renewal is enabled.
    dns_security str
    The version of DNS DDoS protection service.
    expired_time int
    The expiration time of the domain.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_no str
    The ID of the instance. For free edition, the value of this field is null.
    is_ns_correct bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    is_sub_domain bool
    Whether the domain is a subdomain.
    real_dns_server_lists Sequence[str]
    The list of DNS servers actually used by the domain.
    record_count int
    The total number of DNS records under the domain.
    stage int
    The status of the domain.
    sub_domain_host str
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    trade_code str
    The edition of the domain.
    updated_at str
    The update time of the domain.
    zid int
    The ID of the domain.
    allocateDnsServerLists List<String>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew Boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity String
    The version of DNS DDoS protection service.
    expiredTime Number
    The expiration time of the domain.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceNo String
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect Boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain Boolean
    Whether the domain is a subdomain.
    realDnsServerLists List<String>
    The list of DNS servers actually used by the domain.
    recordCount Number
    The total number of DNS records under the domain.
    stage Number
    The status of the domain.
    subDomainHost String
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tradeCode String
    The edition of the domain.
    updatedAt String
    The update time of the domain.
    zid Number
    The ID of the domain.

    Look up Existing Zone Resource

    Get an existing Zone 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?: ZoneState, opts?: CustomResourceOptions): Zone
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allocate_dns_server_lists: Optional[Sequence[str]] = None,
            auto_renew: Optional[bool] = None,
            dns_security: Optional[str] = None,
            expired_time: Optional[int] = None,
            instance_no: Optional[str] = None,
            is_ns_correct: Optional[bool] = None,
            is_sub_domain: Optional[bool] = None,
            project_name: Optional[str] = None,
            real_dns_server_lists: Optional[Sequence[str]] = None,
            record_count: Optional[int] = None,
            remark: Optional[str] = None,
            stage: Optional[int] = None,
            sub_domain_host: Optional[str] = None,
            tags: Optional[Sequence[ZoneTagArgs]] = None,
            trade_code: Optional[str] = None,
            updated_at: Optional[str] = None,
            zid: Optional[int] = None,
            zone_name: Optional[str] = None) -> Zone
    func GetZone(ctx *Context, name string, id IDInput, state *ZoneState, opts ...ResourceOption) (*Zone, error)
    public static Zone Get(string name, Input<string> id, ZoneState? state, CustomResourceOptions? opts = null)
    public static Zone get(String name, Output<String> id, ZoneState state, CustomResourceOptions options)
    resources:  _:    type: volcengine:dns:Zone    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.
    The following state arguments are supported:
    AllocateDnsServerLists List<string>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    AutoRenew bool
    Whether automatic domain renewal is enabled.
    DnsSecurity string
    The version of DNS DDoS protection service.
    ExpiredTime int
    The expiration time of the domain.
    InstanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    IsNsCorrect bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    IsSubDomain bool
    Whether the domain is a subdomain.
    ProjectName string
    The project to which the domain name belongs. The default value is default.
    RealDnsServerLists List<string>
    The list of DNS servers actually used by the domain.
    RecordCount int
    The total number of DNS records under the domain.
    Remark string
    The remark for the domain.
    Stage int
    The status of the domain.
    SubDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    Tags List<ZoneTag>
    Tags.
    TradeCode string
    The edition of the domain.
    UpdatedAt string
    The update time of the domain.
    Zid int
    The ID of the domain.
    ZoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    AllocateDnsServerLists []string
    The list of DNS servers allocated to the domain by BytePlus DNS.
    AutoRenew bool
    Whether automatic domain renewal is enabled.
    DnsSecurity string
    The version of DNS DDoS protection service.
    ExpiredTime int
    The expiration time of the domain.
    InstanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    IsNsCorrect bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    IsSubDomain bool
    Whether the domain is a subdomain.
    ProjectName string
    The project to which the domain name belongs. The default value is default.
    RealDnsServerLists []string
    The list of DNS servers actually used by the domain.
    RecordCount int
    The total number of DNS records under the domain.
    Remark string
    The remark for the domain.
    Stage int
    The status of the domain.
    SubDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    Tags []ZoneTagArgs
    Tags.
    TradeCode string
    The edition of the domain.
    UpdatedAt string
    The update time of the domain.
    Zid int
    The ID of the domain.
    ZoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    allocateDnsServerLists List<String>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew Boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity String
    The version of DNS DDoS protection service.
    expiredTime Integer
    The expiration time of the domain.
    instanceNo String
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect Boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain Boolean
    Whether the domain is a subdomain.
    projectName String
    The project to which the domain name belongs. The default value is default.
    realDnsServerLists List<String>
    The list of DNS servers actually used by the domain.
    recordCount Integer
    The total number of DNS records under the domain.
    remark String
    The remark for the domain.
    stage Integer
    The status of the domain.
    subDomainHost String
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tags List<ZoneTag>
    Tags.
    tradeCode String
    The edition of the domain.
    updatedAt String
    The update time of the domain.
    zid Integer
    The ID of the domain.
    zoneName String
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    allocateDnsServerLists string[]
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity string
    The version of DNS DDoS protection service.
    expiredTime number
    The expiration time of the domain.
    instanceNo string
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain boolean
    Whether the domain is a subdomain.
    projectName string
    The project to which the domain name belongs. The default value is default.
    realDnsServerLists string[]
    The list of DNS servers actually used by the domain.
    recordCount number
    The total number of DNS records under the domain.
    remark string
    The remark for the domain.
    stage number
    The status of the domain.
    subDomainHost string
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tags ZoneTag[]
    Tags.
    tradeCode string
    The edition of the domain.
    updatedAt string
    The update time of the domain.
    zid number
    The ID of the domain.
    zoneName string
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    allocate_dns_server_lists Sequence[str]
    The list of DNS servers allocated to the domain by BytePlus DNS.
    auto_renew bool
    Whether automatic domain renewal is enabled.
    dns_security str
    The version of DNS DDoS protection service.
    expired_time int
    The expiration time of the domain.
    instance_no str
    The ID of the instance. For free edition, the value of this field is null.
    is_ns_correct bool
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    is_sub_domain bool
    Whether the domain is a subdomain.
    project_name str
    The project to which the domain name belongs. The default value is default.
    real_dns_server_lists Sequence[str]
    The list of DNS servers actually used by the domain.
    record_count int
    The total number of DNS records under the domain.
    remark str
    The remark for the domain.
    stage int
    The status of the domain.
    sub_domain_host str
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tags Sequence[ZoneTagArgs]
    Tags.
    trade_code str
    The edition of the domain.
    updated_at str
    The update time of the domain.
    zid int
    The ID of the domain.
    zone_name str
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.
    allocateDnsServerLists List<String>
    The list of DNS servers allocated to the domain by BytePlus DNS.
    autoRenew Boolean
    Whether automatic domain renewal is enabled.
    dnsSecurity String
    The version of DNS DDoS protection service.
    expiredTime Number
    The expiration time of the domain.
    instanceNo String
    The ID of the instance. For free edition, the value of this field is null.
    isNsCorrect Boolean
    Indicates whether the configuration of NS servers is correct. If the configuration is correct, the status of the domain in BytePlus DNS is Active.
    isSubDomain Boolean
    Whether the domain is a subdomain.
    projectName String
    The project to which the domain name belongs. The default value is default.
    realDnsServerLists List<String>
    The list of DNS servers actually used by the domain.
    recordCount Number
    The total number of DNS records under the domain.
    remark String
    The remark for the domain.
    stage Number
    The status of the domain.
    subDomainHost String
    The domain prefix of the subdomain. If the domain is not a subdomain, this parameter is null.
    tags List<Property Map>
    Tags.
    tradeCode String
    The edition of the domain.
    updatedAt String
    The update time of the domain.
    zid Number
    The ID of the domain.
    zoneName String
    The domain to be created. The domain must be a second-level domain and cannot be a wildcard domain.

    Supporting Types

    ZoneTag, ZoneTagArgs

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Import

    Zone can be imported using the id, e.g.

    $ pulumi import volcengine:dns/zone:Zone 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.
    volcengine logo
    Volcengine v0.0.29 published on Tuesday, Apr 29, 2025 by Volcengine