alicloud.vpc.RouteTable
Explore with Pulumi AI
Provides a VPC Route Table resource. Currently, customized route tables are available in most regions apart from China (Beijing), China (Hangzhou), and China (Shenzhen) regions.
For information about VPC Route Table and how to use it, see What is Route Table.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const defaultVpc = new alicloud.vpc.Network("defaultVpc", {vpcName: name});
const _default = new alicloud.vpc.RouteTable("default", {
description: "test-description",
vpcId: defaultVpc.id,
routeTableName: name,
associateType: "VSwitch",
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default_vpc = alicloud.vpc.Network("defaultVpc", vpc_name=name)
default = alicloud.vpc.RouteTable("default",
description="test-description",
vpc_id=default_vpc.id,
route_table_name=name,
associate_type="VSwitch")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"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, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
defaultVpc, err := vpc.NewNetwork(ctx, "defaultVpc", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
})
if err != nil {
return err
}
_, err = vpc.NewRouteTable(ctx, "default", &vpc.RouteTableArgs{
Description: pulumi.String("test-description"),
VpcId: defaultVpc.ID(),
RouteTableName: pulumi.String(name),
AssociateType: pulumi.String("VSwitch"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var defaultVpc = new AliCloud.Vpc.Network("defaultVpc", new()
{
VpcName = name,
});
var @default = new AliCloud.Vpc.RouteTable("default", new()
{
Description = "test-description",
VpcId = defaultVpc.Id,
RouteTableName = name,
AssociateType = "VSwitch",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.RouteTable;
import com.pulumi.alicloud.vpc.RouteTableArgs;
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 name = config.get("name").orElse("terraform-example");
var defaultVpc = new Network("defaultVpc", NetworkArgs.builder()
.vpcName(name)
.build());
var default_ = new RouteTable("default", RouteTableArgs.builder()
.description("test-description")
.vpcId(defaultVpc.id())
.routeTableName(name)
.associateType("VSwitch")
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
defaultVpc:
type: alicloud:vpc:Network
properties:
vpcName: ${name}
default:
type: alicloud:vpc:RouteTable
properties:
description: test-description
vpcId: ${defaultVpc.id}
routeTableName: ${name}
associateType: VSwitch
Create RouteTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RouteTable(name: string, args: RouteTableArgs, opts?: CustomResourceOptions);
@overload
def RouteTable(resource_name: str,
args: RouteTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RouteTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
vpc_id: Optional[str] = None,
associate_type: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
route_table_name: Optional[str] = None,
tags: Optional[Mapping[str, Any]] = None)
func NewRouteTable(ctx *Context, name string, args RouteTableArgs, opts ...ResourceOption) (*RouteTable, error)
public RouteTable(string name, RouteTableArgs args, CustomResourceOptions? opts = null)
public RouteTable(String name, RouteTableArgs args)
public RouteTable(String name, RouteTableArgs args, CustomResourceOptions options)
type: alicloud:vpc:RouteTable
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 RouteTableArgs
- 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 RouteTableArgs
- 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 RouteTableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouteTableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RouteTableArgs
- 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 routeTableResource = new AliCloud.Vpc.RouteTable("routeTableResource", new()
{
VpcId = "string",
AssociateType = "string",
Description = "string",
RouteTableName = "string",
Tags =
{
{ "string", "any" },
},
});
example, err := vpc.NewRouteTable(ctx, "routeTableResource", &vpc.RouteTableArgs{
VpcId: pulumi.String("string"),
AssociateType: pulumi.String("string"),
Description: pulumi.String("string"),
RouteTableName: pulumi.String("string"),
Tags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var routeTableResource = new RouteTable("routeTableResource", RouteTableArgs.builder()
.vpcId("string")
.associateType("string")
.description("string")
.routeTableName("string")
.tags(Map.of("string", "any"))
.build());
route_table_resource = alicloud.vpc.RouteTable("routeTableResource",
vpc_id="string",
associate_type="string",
description="string",
route_table_name="string",
tags={
"string": "any",
})
const routeTableResource = new alicloud.vpc.RouteTable("routeTableResource", {
vpcId: "string",
associateType: "string",
description: "string",
routeTableName: "string",
tags: {
string: "any",
},
});
type: alicloud:vpc:RouteTable
properties:
associateType: string
description: string
routeTableName: string
tags:
string: any
vpcId: string
RouteTable Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The RouteTable resource accepts the following input properties:
- Vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- Associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- Description string
- Description of the routing table.
- Name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- Route
Table stringName - The name of the routing table.
- Dictionary<string, object>
- The tag.
- Vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- Associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- Description string
- Description of the routing table.
- Name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- Route
Table stringName - The name of the routing table.
- map[string]interface{}
- The tag.
- vpc
Id String The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type String - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- description String
- Description of the routing table.
- name String
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- route
Table StringName - The name of the routing table.
- Map<String,Object>
- The tag.
- vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- description string
- Description of the routing table.
- name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- route
Table stringName - The name of the routing table.
- {[key: string]: any}
- The tag.
- vpc_
id str The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate_
type str - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- description str
- Description of the routing table.
- name str
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- route_
table_ strname - The name of the routing table.
- Mapping[str, Any]
- The tag.
- vpc
Id String The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type String - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- description String
- Description of the routing table.
- name String
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- route
Table StringName - The name of the routing table.
- Map<Any>
- The tag.
Outputs
All input properties are implicitly available as output properties. Additionally, the RouteTable resource produces the following output properties:
- Create
Time string - The creation time of the routing table.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Group stringId - Resource group ID.
- Status string
- Routing table state.
- Create
Time string - The creation time of the routing table.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Group stringId - Resource group ID.
- Status string
- Routing table state.
- create
Time String - The creation time of the routing table.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Group StringId - Resource group ID.
- status String
- Routing table state.
- create
Time string - The creation time of the routing table.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Group stringId - Resource group ID.
- status string
- Routing table state.
- create_
time str - The creation time of the routing table.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
group_ strid - Resource group ID.
- status str
- Routing table state.
- create
Time String - The creation time of the routing table.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Group StringId - Resource group ID.
- status String
- Routing table state.
Look up Existing RouteTable Resource
Get an existing RouteTable 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?: RouteTableState, opts?: CustomResourceOptions): RouteTable
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associate_type: Optional[str] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
resource_group_id: Optional[str] = None,
route_table_name: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, Any]] = None,
vpc_id: Optional[str] = None) -> RouteTable
func GetRouteTable(ctx *Context, name string, id IDInput, state *RouteTableState, opts ...ResourceOption) (*RouteTable, error)
public static RouteTable Get(string name, Input<string> id, RouteTableState? state, CustomResourceOptions? opts = null)
public static RouteTable get(String name, Output<String> id, RouteTableState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- Create
Time string - The creation time of the routing table.
- Description string
- Description of the routing table.
- Name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- Resource
Group stringId - Resource group ID.
- Route
Table stringName - The name of the routing table.
- Status string
- Routing table state.
- Dictionary<string, object>
- The tag.
- Vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- Associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- Create
Time string - The creation time of the routing table.
- Description string
- Description of the routing table.
- Name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- Resource
Group stringId - Resource group ID.
- Route
Table stringName - The name of the routing table.
- Status string
- Routing table state.
- map[string]interface{}
- The tag.
- Vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type String - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- create
Time String - The creation time of the routing table.
- description String
- Description of the routing table.
- name String
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- resource
Group StringId - Resource group ID.
- route
Table StringName - The name of the routing table.
- status String
- Routing table state.
- Map<String,Object>
- The tag.
- vpc
Id String The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type string - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- create
Time string - The creation time of the routing table.
- description string
- Description of the routing table.
- name string
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- resource
Group stringId - Resource group ID.
- route
Table stringName - The name of the routing table.
- status string
- Routing table state.
- {[key: string]: any}
- The tag.
- vpc
Id string The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate_
type str - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- create_
time str - The creation time of the routing table.
- description str
- Description of the routing table.
- name str
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- resource_
group_ strid - Resource group ID.
- route_
table_ strname - The name of the routing table.
- status str
- Routing table state.
- Mapping[str, Any]
- The tag.
- vpc_
id str The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
- associate
Type String - The type of cloud resource that is bound to the routing table. Value:
- VSwitch: switch.
- Gateway:IPv4 Gateway.
- create
Time String - The creation time of the routing table.
- description String
- Description of the routing table.
- name String
- Field 'name' has been deprecated from provider version 1.119.1. New field 'route_table_name' instead.
- resource
Group StringId - Resource group ID.
- route
Table StringName - The name of the routing table.
- status String
- Routing table state.
- Map<Any>
- The tag.
- vpc
Id String The ID of VPC.
The following arguments will be discarded. Please use new fields as soon as possible:
Import
VPC Route Table can be imported using the id, e.g.
$ pulumi import alicloud:vpc/routeTable:RouteTable example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.