1. Packages
  2. Opentelekomcloud Provider
  3. API Docs
  4. ErInstanceV3
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

opentelekomcloud.ErInstanceV3

Explore with Pulumi AI

opentelekomcloud logo
opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud

    Up-to-date reference of API arguments for Enterprise Router you can get at documentation portal

    Manages an ER instance resource within OpenTelekomCloud.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as opentelekomcloud from "@pulumi/opentelekomcloud";
    
    const config = new pulumi.Config();
    const routerName = config.requireObject("routerName");
    const availabilityZones = config.requireObject<Array<string>>("availabilityZones");
    const test = new opentelekomcloud.ErInstanceV3("test", {
        availabilityZones: availabilityZones,
        asn: 64512,
        tags: {
            foo: "bar",
            key: "value",
        },
    });
    
    import pulumi
    import pulumi_opentelekomcloud as opentelekomcloud
    
    config = pulumi.Config()
    router_name = config.require_object("routerName")
    availability_zones = config.require_object("availabilityZones")
    test = opentelekomcloud.ErInstanceV3("test",
        availability_zones=availability_zones,
        asn=64512,
        tags={
            "foo": "bar",
            "key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		routerName := cfg.RequireObject("routerName")
    		availabilityZones := cfg.Require("availabilityZones")
    		_, err := opentelekomcloud.NewErInstanceV3(ctx, "test", &opentelekomcloud.ErInstanceV3Args{
    			AvailabilityZones: availabilityZones,
    			Asn:               pulumi.Float64(64512),
    			Tags: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    				"key": pulumi.String("value"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opentelekomcloud = Pulumi.Opentelekomcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var routerName = config.RequireObject<dynamic>("routerName");
        var availabilityZones = config.RequireObject<string[]>("availabilityZones");
        var test = new Opentelekomcloud.ErInstanceV3("test", new()
        {
            AvailabilityZones = availabilityZones,
            Asn = 64512,
            Tags = 
            {
                { "foo", "bar" },
                { "key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opentelekomcloud.ErInstanceV3;
    import com.pulumi.opentelekomcloud.ErInstanceV3Args;
    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) {
            final var config = ctx.config();
            final var routerName = config.get("routerName");
            final var availabilityZones = config.get("availabilityZones");
            var test = new ErInstanceV3("test", ErInstanceV3Args.builder()
                .availabilityZones(availabilityZones)
                .asn(64512)
                .tags(Map.ofEntries(
                    Map.entry("foo", "bar"),
                    Map.entry("key", "value")
                ))
                .build());
    
        }
    }
    
    configuration:
      routerName:
        type: dynamic
      availabilityZones:
        type: list(string)
    resources:
      test:
        type: opentelekomcloud:ErInstanceV3
        properties:
          availabilityZones: ${availabilityZones}
          asn: 64512
          tags:
            foo: bar
            key: value
    

    Create ErInstanceV3 Resource

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

    Constructor syntax

    new ErInstanceV3(name: string, args: ErInstanceV3Args, opts?: CustomResourceOptions);
    @overload
    def ErInstanceV3(resource_name: str,
                     args: ErInstanceV3Args,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ErInstanceV3(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     asn: Optional[float] = None,
                     availability_zones: Optional[Sequence[str]] = None,
                     auto_accept_shared_attachments: Optional[bool] = None,
                     description: Optional[str] = None,
                     enable_default_association: Optional[bool] = None,
                     enable_default_propagation: Optional[bool] = None,
                     er_instance_v3_id: Optional[str] = None,
                     name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     timeouts: Optional[ErInstanceV3TimeoutsArgs] = None)
    func NewErInstanceV3(ctx *Context, name string, args ErInstanceV3Args, opts ...ResourceOption) (*ErInstanceV3, error)
    public ErInstanceV3(string name, ErInstanceV3Args args, CustomResourceOptions? opts = null)
    public ErInstanceV3(String name, ErInstanceV3Args args)
    public ErInstanceV3(String name, ErInstanceV3Args args, CustomResourceOptions options)
    
    type: opentelekomcloud:ErInstanceV3
    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 ErInstanceV3Args
    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 ErInstanceV3Args
    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 ErInstanceV3Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ErInstanceV3Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ErInstanceV3Args
    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 erInstanceV3Resource = new Opentelekomcloud.ErInstanceV3("erInstanceV3Resource", new()
    {
        Asn = 0,
        AvailabilityZones = new[]
        {
            "string",
        },
        AutoAcceptSharedAttachments = false,
        Description = "string",
        EnableDefaultAssociation = false,
        EnableDefaultPropagation = false,
        ErInstanceV3Id = "string",
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Opentelekomcloud.Inputs.ErInstanceV3TimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := opentelekomcloud.NewErInstanceV3(ctx, "erInstanceV3Resource", &opentelekomcloud.ErInstanceV3Args{
    	Asn: pulumi.Float64(0),
    	AvailabilityZones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AutoAcceptSharedAttachments: pulumi.Bool(false),
    	Description:                 pulumi.String("string"),
    	EnableDefaultAssociation:    pulumi.Bool(false),
    	EnableDefaultPropagation:    pulumi.Bool(false),
    	ErInstanceV3Id:              pulumi.String("string"),
    	Name:                        pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &opentelekomcloud.ErInstanceV3TimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var erInstanceV3Resource = new ErInstanceV3("erInstanceV3Resource", ErInstanceV3Args.builder()
        .asn(0)
        .availabilityZones("string")
        .autoAcceptSharedAttachments(false)
        .description("string")
        .enableDefaultAssociation(false)
        .enableDefaultPropagation(false)
        .erInstanceV3Id("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .timeouts(ErInstanceV3TimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    er_instance_v3_resource = opentelekomcloud.ErInstanceV3("erInstanceV3Resource",
        asn=0,
        availability_zones=["string"],
        auto_accept_shared_attachments=False,
        description="string",
        enable_default_association=False,
        enable_default_propagation=False,
        er_instance_v3_id="string",
        name="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const erInstanceV3Resource = new opentelekomcloud.ErInstanceV3("erInstanceV3Resource", {
        asn: 0,
        availabilityZones: ["string"],
        autoAcceptSharedAttachments: false,
        description: "string",
        enableDefaultAssociation: false,
        enableDefaultPropagation: false,
        erInstanceV3Id: "string",
        name: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: opentelekomcloud:ErInstanceV3
    properties:
        asn: 0
        autoAcceptSharedAttachments: false
        availabilityZones:
            - string
        description: string
        enableDefaultAssociation: false
        enableDefaultPropagation: false
        erInstanceV3Id: string
        name: string
        tags:
            string: string
        timeouts:
            create: string
            delete: string
            update: string
    

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

    Asn double

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    AvailabilityZones List<string>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    AutoAcceptSharedAttachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    Description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    EnableDefaultAssociation bool
    Whether to enable the association of the default route table. The default value is false.
    EnableDefaultPropagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    ErInstanceV3Id string
    The resource ID.
    Name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    Tags Dictionary<string, string>
    Tags key/value pairs to associate with the instance.
    Timeouts ErInstanceV3Timeouts
    Asn float64

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    AvailabilityZones []string
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    AutoAcceptSharedAttachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    Description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    EnableDefaultAssociation bool
    Whether to enable the association of the default route table. The default value is false.
    EnableDefaultPropagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    ErInstanceV3Id string
    The resource ID.
    Name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    Tags map[string]string
    Tags key/value pairs to associate with the instance.
    Timeouts ErInstanceV3TimeoutsArgs
    asn Double

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    availabilityZones List<String>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    autoAcceptSharedAttachments Boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    description String
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation Boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation Boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id String
    The resource ID.
    name String
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    tags Map<String,String>
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3Timeouts
    asn number

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    availabilityZones string[]
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    autoAcceptSharedAttachments boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id string
    The resource ID.
    name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    tags {[key: string]: string}
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3Timeouts
    asn float

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    availability_zones Sequence[str]
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    auto_accept_shared_attachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    description str
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enable_default_association bool
    Whether to enable the association of the default route table. The default value is false.
    enable_default_propagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    er_instance_v3_id str
    The resource ID.
    name str
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    tags Mapping[str, str]
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3TimeoutsArgs
    asn Number

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    availabilityZones List<String>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    autoAcceptSharedAttachments Boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    description String
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation Boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation Boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id String
    The resource ID.
    name String
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    tags Map<String>
    Tags key/value pairs to associate with the instance.
    timeouts Property Map

    Outputs

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

    CreatedAt string
    The creation time.
    DefaultAssociationRouteTableId string
    The ID of the default association route table.
    DefaultPropagationRouteTableId string
    The ID of the default propagation route table.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    Specifies the region of the ER instance.
    Status string
    Current status of the router.
    UpdatedAt string
    The latest update time.
    CreatedAt string
    The creation time.
    DefaultAssociationRouteTableId string
    The ID of the default association route table.
    DefaultPropagationRouteTableId string
    The ID of the default propagation route table.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    Specifies the region of the ER instance.
    Status string
    Current status of the router.
    UpdatedAt string
    The latest update time.
    createdAt String
    The creation time.
    defaultAssociationRouteTableId String
    The ID of the default association route table.
    defaultPropagationRouteTableId String
    The ID of the default propagation route table.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    Specifies the region of the ER instance.
    status String
    Current status of the router.
    updatedAt String
    The latest update time.
    createdAt string
    The creation time.
    defaultAssociationRouteTableId string
    The ID of the default association route table.
    defaultPropagationRouteTableId string
    The ID of the default propagation route table.
    id string
    The provider-assigned unique ID for this managed resource.
    region string
    Specifies the region of the ER instance.
    status string
    Current status of the router.
    updatedAt string
    The latest update time.
    created_at str
    The creation time.
    default_association_route_table_id str
    The ID of the default association route table.
    default_propagation_route_table_id str
    The ID of the default propagation route table.
    id str
    The provider-assigned unique ID for this managed resource.
    region str
    Specifies the region of the ER instance.
    status str
    Current status of the router.
    updated_at str
    The latest update time.
    createdAt String
    The creation time.
    defaultAssociationRouteTableId String
    The ID of the default association route table.
    defaultPropagationRouteTableId String
    The ID of the default propagation route table.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    Specifies the region of the ER instance.
    status String
    Current status of the router.
    updatedAt String
    The latest update time.

    Look up Existing ErInstanceV3 Resource

    Get an existing ErInstanceV3 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?: ErInstanceV3State, opts?: CustomResourceOptions): ErInstanceV3
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            asn: Optional[float] = None,
            auto_accept_shared_attachments: Optional[bool] = None,
            availability_zones: Optional[Sequence[str]] = None,
            created_at: Optional[str] = None,
            default_association_route_table_id: Optional[str] = None,
            default_propagation_route_table_id: Optional[str] = None,
            description: Optional[str] = None,
            enable_default_association: Optional[bool] = None,
            enable_default_propagation: Optional[bool] = None,
            er_instance_v3_id: Optional[str] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            status: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            timeouts: Optional[ErInstanceV3TimeoutsArgs] = None,
            updated_at: Optional[str] = None) -> ErInstanceV3
    func GetErInstanceV3(ctx *Context, name string, id IDInput, state *ErInstanceV3State, opts ...ResourceOption) (*ErInstanceV3, error)
    public static ErInstanceV3 Get(string name, Input<string> id, ErInstanceV3State? state, CustomResourceOptions? opts = null)
    public static ErInstanceV3 get(String name, Output<String> id, ErInstanceV3State state, CustomResourceOptions options)
    resources:  _:    type: opentelekomcloud:ErInstanceV3    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:
    Asn double

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    AutoAcceptSharedAttachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    AvailabilityZones List<string>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    CreatedAt string
    The creation time.
    DefaultAssociationRouteTableId string
    The ID of the default association route table.
    DefaultPropagationRouteTableId string
    The ID of the default propagation route table.
    Description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    EnableDefaultAssociation bool
    Whether to enable the association of the default route table. The default value is false.
    EnableDefaultPropagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    ErInstanceV3Id string
    The resource ID.
    Name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    Region string
    Specifies the region of the ER instance.
    Status string
    Current status of the router.
    Tags Dictionary<string, string>
    Tags key/value pairs to associate with the instance.
    Timeouts ErInstanceV3Timeouts
    UpdatedAt string
    The latest update time.
    Asn float64

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    AutoAcceptSharedAttachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    AvailabilityZones []string
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    CreatedAt string
    The creation time.
    DefaultAssociationRouteTableId string
    The ID of the default association route table.
    DefaultPropagationRouteTableId string
    The ID of the default propagation route table.
    Description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    EnableDefaultAssociation bool
    Whether to enable the association of the default route table. The default value is false.
    EnableDefaultPropagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    ErInstanceV3Id string
    The resource ID.
    Name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    Region string
    Specifies the region of the ER instance.
    Status string
    Current status of the router.
    Tags map[string]string
    Tags key/value pairs to associate with the instance.
    Timeouts ErInstanceV3TimeoutsArgs
    UpdatedAt string
    The latest update time.
    asn Double

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    autoAcceptSharedAttachments Boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    availabilityZones List<String>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    createdAt String
    The creation time.
    defaultAssociationRouteTableId String
    The ID of the default association route table.
    defaultPropagationRouteTableId String
    The ID of the default propagation route table.
    description String
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation Boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation Boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id String
    The resource ID.
    name String
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    region String
    Specifies the region of the ER instance.
    status String
    Current status of the router.
    tags Map<String,String>
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3Timeouts
    updatedAt String
    The latest update time.
    asn number

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    autoAcceptSharedAttachments boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    availabilityZones string[]
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    createdAt string
    The creation time.
    defaultAssociationRouteTableId string
    The ID of the default association route table.
    defaultPropagationRouteTableId string
    The ID of the default propagation route table.
    description string
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id string
    The resource ID.
    name string
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    region string
    Specifies the region of the ER instance.
    status string
    Current status of the router.
    tags {[key: string]: string}
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3Timeouts
    updatedAt string
    The latest update time.
    asn float

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    auto_accept_shared_attachments bool
    Whether to automatically accept the creation of shared attachment. The default value is false.
    availability_zones Sequence[str]
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    created_at str
    The creation time.
    default_association_route_table_id str
    The ID of the default association route table.
    default_propagation_route_table_id str
    The ID of the default propagation route table.
    description str
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enable_default_association bool
    Whether to enable the association of the default route table. The default value is false.
    enable_default_propagation bool
    Whether to enable the propagation of the default route table. The default value is false.
    er_instance_v3_id str
    The resource ID.
    name str
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    region str
    Specifies the region of the ER instance.
    status str
    Current status of the router.
    tags Mapping[str, str]
    Tags key/value pairs to associate with the instance.
    timeouts ErInstanceV3TimeoutsArgs
    updated_at str
    The latest update time.
    asn Number

    The BGP AS number of the ER instance. The valid value is range from 64,512 to 65534 or range from 4,200,000,000 to 4,294,967,294.

    Changing this parameter will create a new resource.

    autoAcceptSharedAttachments Boolean
    Whether to automatically accept the creation of shared attachment. The default value is false.
    availabilityZones List<String>
    The availability zone list where the ER instance is located. The maximum number of availability zone is two. Select two AZs to configure active-active deployment for high availability which will ensure reliability and disaster recovery.
    createdAt String
    The creation time.
    defaultAssociationRouteTableId String
    The ID of the default association route table.
    defaultPropagationRouteTableId String
    The ID of the default propagation route table.
    description String
    The description of the ER instance. The description contain a maximum of 255 characters, and the angle brackets (< and >) are not allowed.
    enableDefaultAssociation Boolean
    Whether to enable the association of the default route table. The default value is false.
    enableDefaultPropagation Boolean
    Whether to enable the propagation of the default route table. The default value is false.
    erInstanceV3Id String
    The resource ID.
    name String
    The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
    region String
    Specifies the region of the ER instance.
    status String
    Current status of the router.
    tags Map<String>
    Tags key/value pairs to associate with the instance.
    timeouts Property Map
    updatedAt String
    The latest update time.

    Supporting Types

    ErInstanceV3Timeouts, ErInstanceV3TimeoutsArgs

    Create string
    Delete string
    Update string
    Create string
    Delete string
    Update string
    create String
    delete String
    update String
    create string
    delete string
    update string
    create str
    delete str
    update str
    create String
    delete String
    update String

    Import

    The router instance can be imported using the id, e.g.

    $ pulumi import opentelekomcloud:index/erInstanceV3:ErInstanceV3 test 0ce123456a00f2591fabc00385ff1234
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
    License
    Notes
    This Pulumi package is based on the opentelekomcloud Terraform Provider.
    opentelekomcloud logo
    opentelekomcloud 1.36.37 published on Thursday, Apr 24, 2025 by opentelekomcloud