opentelekomcloud.ErInstanceV3
Explore with Pulumi AI
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
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- Availability
Zones 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.
- 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.
- Enable
Default boolAssociation - Whether to enable the association of the default route table. The default value is false.
- Enable
Default boolPropagation - Whether to enable the propagation of the default route table. The default value is false.
- Er
Instance stringV3Id - The resource ID.
- Name string
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- Dictionary<string, string>
- Tags key/value pairs to associate with the instance.
- Timeouts
Er
Instance V3Timeouts
- Asn float64
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- Availability
Zones []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.
- 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.
- Enable
Default boolAssociation - Whether to enable the association of the default route table. The default value is false.
- Enable
Default boolPropagation - Whether to enable the propagation of the default route table. The default value is false.
- Er
Instance stringV3Id - The resource ID.
- Name string
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- map[string]string
- Tags key/value pairs to associate with the instance.
- Timeouts
Er
Instance V3Timeouts Args
- asn Double
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- availability
Zones 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.
- 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.
- enable
Default BooleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default BooleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance StringV3Id - The resource ID.
- name String
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- Map<String,String>
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts
- asn number
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- availability
Zones 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.
- 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.
- enable
Default booleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default booleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance stringV3Id - The resource ID.
- name string
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- {[key: string]: string}
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts
- asn float
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,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.
- 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_ boolassociation - Whether to enable the association of the default route table. The default value is false.
- enable_
default_ boolpropagation - Whether to enable the propagation of the default route table. The default value is false.
- er_
instance_ strv3_ id - The resource ID.
- name str
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- Mapping[str, str]
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts Args
- asn Number
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- availability
Zones 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.
- 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.
- enable
Default BooleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default BooleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance StringV3Id - The resource ID.
- name String
- The router name. The name can contain 1 to 64 characters, only letters, digits, underscore (_) and hyphens (-) are allowed.
- 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:
- Created
At string - The creation time.
- Default
Association stringRoute Table Id - The ID of the default association route table.
- Default
Propagation stringRoute Table Id - 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.
- Updated
At string - The latest update time.
- Created
At string - The creation time.
- Default
Association stringRoute Table Id - The ID of the default association route table.
- Default
Propagation stringRoute Table Id - 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.
- Updated
At string - The latest update time.
- created
At String - The creation time.
- default
Association StringRoute Table Id - The ID of the default association route table.
- default
Propagation StringRoute Table Id - 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.
- updated
At String - The latest update time.
- created
At string - The creation time.
- default
Association stringRoute Table Id - The ID of the default association route table.
- default
Propagation stringRoute Table Id - 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.
- updated
At string - The latest update time.
- created_
at str - The creation time.
- default_
association_ strroute_ table_ id - The ID of the default association route table.
- default_
propagation_ strroute_ table_ id - 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.
- created
At String - The creation time.
- default
Association StringRoute Table Id - The ID of the default association route table.
- default
Propagation StringRoute Table Id - 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.
- updated
At 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.
- Asn double
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- bool
- Whether to automatically accept the creation of shared attachment. The default value is false.
- Availability
Zones 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.
- Created
At string - The creation time.
- Default
Association stringRoute Table Id - The ID of the default association route table.
- Default
Propagation stringRoute Table Id - 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.
- Enable
Default boolAssociation - Whether to enable the association of the default route table. The default value is false.
- Enable
Default boolPropagation - Whether to enable the propagation of the default route table. The default value is false.
- Er
Instance stringV3Id - 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.
- Dictionary<string, string>
- Tags key/value pairs to associate with the instance.
- Timeouts
Er
Instance V3Timeouts - Updated
At string - The latest update time.
- Asn float64
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- bool
- Whether to automatically accept the creation of shared attachment. The default value is false.
- Availability
Zones []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.
- Created
At string - The creation time.
- Default
Association stringRoute Table Id - The ID of the default association route table.
- Default
Propagation stringRoute Table Id - 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.
- Enable
Default boolAssociation - Whether to enable the association of the default route table. The default value is false.
- Enable
Default boolPropagation - Whether to enable the propagation of the default route table. The default value is false.
- Er
Instance stringV3Id - 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.
- map[string]string
- Tags key/value pairs to associate with the instance.
- Timeouts
Er
Instance V3Timeouts Args - Updated
At string - The latest update time.
- asn Double
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- Boolean
- Whether to automatically accept the creation of shared attachment. The default value is false.
- availability
Zones 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.
- created
At String - The creation time.
- default
Association StringRoute Table Id - The ID of the default association route table.
- default
Propagation StringRoute Table Id - 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.
- enable
Default BooleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default BooleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance StringV3Id - 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.
- Map<String,String>
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts - updated
At String - The latest update time.
- asn number
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- boolean
- Whether to automatically accept the creation of shared attachment. The default value is false.
- availability
Zones 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.
- created
At string - The creation time.
- default
Association stringRoute Table Id - The ID of the default association route table.
- default
Propagation stringRoute Table Id - 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.
- enable
Default booleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default booleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance stringV3Id - 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.
- {[key: string]: string}
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts - updated
At string - The latest update time.
- asn float
The BGP AS number of the ER instance. The valid value is range from
64,512
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- 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_ strroute_ table_ id - The ID of the default association route table.
- default_
propagation_ strroute_ table_ id - 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_ boolassociation - Whether to enable the association of the default route table. The default value is false.
- enable_
default_ boolpropagation - Whether to enable the propagation of the default route table. The default value is false.
- er_
instance_ strv3_ id - 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.
- Mapping[str, str]
- Tags key/value pairs to associate with the instance.
- timeouts
Er
Instance V3Timeouts Args - 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
to65534
or range from4,200,000,000
to4,294,967,294
.Changing this parameter will create a new resource.
- Boolean
- Whether to automatically accept the creation of shared attachment. The default value is false.
- availability
Zones 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.
- created
At String - The creation time.
- default
Association StringRoute Table Id - The ID of the default association route table.
- default
Propagation StringRoute Table Id - 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.
- enable
Default BooleanAssociation - Whether to enable the association of the default route table. The default value is false.
- enable
Default BooleanPropagation - Whether to enable the propagation of the default route table. The default value is false.
- er
Instance StringV3Id - 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.
- Map<String>
- Tags key/value pairs to associate with the instance.
- timeouts Property Map
- updated
At String - The latest update time.
Supporting Types
ErInstanceV3Timeouts, ErInstanceV3TimeoutsArgs
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.