outscale.RouteTable
Explore with Pulumi AI
Manages a route table.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resource
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var net01 = new Outscale.Net("net01", new()
{
IpRange = "10.0.0.0/16",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
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 net01 = new Net("net01", NetArgs.builder()
.ipRange("10.0.0.0/16")
.build());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
Create a route table
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const routeTable01 = new outscale.RouteTable("routeTable01", {netId: outscale_net.net01.net_id});
import pulumi
import pulumi_outscale as outscale
route_table01 = outscale.RouteTable("routeTable01", net_id=outscale_net["net01"]["net_id"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewRouteTable(ctx, "routeTable01", &outscale.RouteTableArgs{
NetId: pulumi.Any(outscale_net.Net01.Net_id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var routeTable01 = new Outscale.RouteTable("routeTable01", new()
{
NetId = outscale_net.Net01.Net_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.RouteTable;
import com.pulumi.outscale.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) {
var routeTable01 = new RouteTable("routeTable01", RouteTableArgs.builder()
.netId(outscale_net.net01().net_id())
.build());
}
}
resources:
routeTable01:
type: outscale:RouteTable
properties:
netId: ${outscale_net.net01.net_id}
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,
net_id: Optional[str] = None,
outscale_route_table_id: Optional[str] = None,
tags: Optional[Sequence[RouteTableTagArgs]] = 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: outscale: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 Outscale.RouteTable("routeTableResource", new()
{
NetId = "string",
OutscaleRouteTableId = "string",
Tags = new[]
{
new Outscale.Inputs.RouteTableTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := outscale.NewRouteTable(ctx, "routeTableResource", &outscale.RouteTableArgs{
NetId: pulumi.String("string"),
OutscaleRouteTableId: pulumi.String("string"),
Tags: .RouteTableTagArray{
&.RouteTableTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var routeTableResource = new RouteTable("routeTableResource", RouteTableArgs.builder()
.netId("string")
.outscaleRouteTableId("string")
.tags(RouteTableTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
route_table_resource = outscale.RouteTable("routeTableResource",
net_id="string",
outscale_route_table_id="string",
tags=[{
"key": "string",
"value": "string",
}])
const routeTableResource = new outscale.RouteTable("routeTableResource", {
netId: "string",
outscaleRouteTableId: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: outscale:RouteTable
properties:
netId: string
outscaleRouteTableId: string
tags:
- key: string
value: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The RouteTable resource accepts the following input properties:
- Net
Id string - The ID of the Net for which you want to create a route table.
- Outscale
Route stringTable Id - List<Route
Table Tag> - A tag to add to this resource. You can specify this argument several times.
- Net
Id string - The ID of the Net for which you want to create a route table.
- Outscale
Route stringTable Id - []Route
Table Tag Args - A tag to add to this resource. You can specify this argument several times.
- net
Id String - The ID of the Net for which you want to create a route table.
- outscale
Route StringTable Id - List<Route
Table Tag> - A tag to add to this resource. You can specify this argument several times.
- net
Id string - The ID of the Net for which you want to create a route table.
- outscale
Route stringTable Id - Route
Table Tag[] - A tag to add to this resource. You can specify this argument several times.
- net_
id str - The ID of the Net for which you want to create a route table.
- outscale_
route_ strtable_ id - Sequence[Route
Table Tag Args] - A tag to add to this resource. You can specify this argument several times.
- net
Id String - The ID of the Net for which you want to create a route table.
- outscale
Route StringTable Id - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Outputs
All input properties are implicitly available as output properties. Additionally, the RouteTable resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
Route List<RouteTables Table Link Route Table> - One or more associations between the route table and Subnets.
- Request
Id string - Route
Propagating List<RouteVirtual Gateways Table Route Propagating Virtual Gateway> - Information about virtual gateways propagating routes.
- Route
Table stringId - The ID of the route table.
- Routes
List<Route
Table Route> - One or more routes in the route table.
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
Route []RouteTables Table Link Route Table - One or more associations between the route table and Subnets.
- Request
Id string - Route
Propagating []RouteVirtual Gateways Table Route Propagating Virtual Gateway - Information about virtual gateways propagating routes.
- Route
Table stringId - The ID of the route table.
- Routes
[]Route
Table Route - One or more routes in the route table.
- id String
- The provider-assigned unique ID for this managed resource.
- link
Route List<RouteTables Table Link Route Table> - One or more associations between the route table and Subnets.
- request
Id String - route
Propagating List<RouteVirtual Gateways Table Route Propagating Virtual Gateway> - Information about virtual gateways propagating routes.
- route
Table StringId - The ID of the route table.
- routes
List<Route
Table Route> - One or more routes in the route table.
- id string
- The provider-assigned unique ID for this managed resource.
- link
Route RouteTables Table Link Route Table[] - One or more associations between the route table and Subnets.
- request
Id string - route
Propagating RouteVirtual Gateways Table Route Propagating Virtual Gateway[] - Information about virtual gateways propagating routes.
- route
Table stringId - The ID of the route table.
- routes
Route
Table Route[] - One or more routes in the route table.
- id str
- The provider-assigned unique ID for this managed resource.
- link_
route_ Sequence[Routetables Table Link Route Table] - One or more associations between the route table and Subnets.
- request_
id str - route_
propagating_ Sequence[Routevirtual_ gateways Table Route Propagating Virtual Gateway] - Information about virtual gateways propagating routes.
- route_
table_ strid - The ID of the route table.
- routes
Sequence[Route
Table Route] - One or more routes in the route table.
- id String
- The provider-assigned unique ID for this managed resource.
- link
Route List<Property Map>Tables - One or more associations between the route table and Subnets.
- request
Id String - route
Propagating List<Property Map>Virtual Gateways - Information about virtual gateways propagating routes.
- route
Table StringId - The ID of the route table.
- routes List<Property Map>
- One or more routes in the route table.
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,
link_route_tables: Optional[Sequence[RouteTableLinkRouteTableArgs]] = None,
net_id: Optional[str] = None,
outscale_route_table_id: Optional[str] = None,
request_id: Optional[str] = None,
route_propagating_virtual_gateways: Optional[Sequence[RouteTableRoutePropagatingVirtualGatewayArgs]] = None,
route_table_id: Optional[str] = None,
routes: Optional[Sequence[RouteTableRouteArgs]] = None,
tags: Optional[Sequence[RouteTableTagArgs]] = 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)
resources: _: type: outscale:RouteTable 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.
- Link
Route List<RouteTables Table Link Route Table> - One or more associations between the route table and Subnets.
- Net
Id string - The ID of the Net for which you want to create a route table.
- Outscale
Route stringTable Id - Request
Id string - Route
Propagating List<RouteVirtual Gateways Table Route Propagating Virtual Gateway> - Information about virtual gateways propagating routes.
- Route
Table stringId - The ID of the route table.
- Routes
List<Route
Table Route> - One or more routes in the route table.
- List<Route
Table Tag> - A tag to add to this resource. You can specify this argument several times.
- Link
Route []RouteTables Table Link Route Table Args - One or more associations between the route table and Subnets.
- Net
Id string - The ID of the Net for which you want to create a route table.
- Outscale
Route stringTable Id - Request
Id string - Route
Propagating []RouteVirtual Gateways Table Route Propagating Virtual Gateway Args - Information about virtual gateways propagating routes.
- Route
Table stringId - The ID of the route table.
- Routes
[]Route
Table Route Args - One or more routes in the route table.
- []Route
Table Tag Args - A tag to add to this resource. You can specify this argument several times.
- link
Route List<RouteTables Table Link Route Table> - One or more associations between the route table and Subnets.
- net
Id String - The ID of the Net for which you want to create a route table.
- outscale
Route StringTable Id - request
Id String - route
Propagating List<RouteVirtual Gateways Table Route Propagating Virtual Gateway> - Information about virtual gateways propagating routes.
- route
Table StringId - The ID of the route table.
- routes
List<Route
Table Route> - One or more routes in the route table.
- List<Route
Table Tag> - A tag to add to this resource. You can specify this argument several times.
- link
Route RouteTables Table Link Route Table[] - One or more associations between the route table and Subnets.
- net
Id string - The ID of the Net for which you want to create a route table.
- outscale
Route stringTable Id - request
Id string - route
Propagating RouteVirtual Gateways Table Route Propagating Virtual Gateway[] - Information about virtual gateways propagating routes.
- route
Table stringId - The ID of the route table.
- routes
Route
Table Route[] - One or more routes in the route table.
- Route
Table Tag[] - A tag to add to this resource. You can specify this argument several times.
- link_
route_ Sequence[Routetables Table Link Route Table Args] - One or more associations between the route table and Subnets.
- net_
id str - The ID of the Net for which you want to create a route table.
- outscale_
route_ strtable_ id - request_
id str - route_
propagating_ Sequence[Routevirtual_ gateways Table Route Propagating Virtual Gateway Args] - Information about virtual gateways propagating routes.
- route_
table_ strid - The ID of the route table.
- routes
Sequence[Route
Table Route Args] - One or more routes in the route table.
- Sequence[Route
Table Tag Args] - A tag to add to this resource. You can specify this argument several times.
- link
Route List<Property Map>Tables - One or more associations between the route table and Subnets.
- net
Id String - The ID of the Net for which you want to create a route table.
- outscale
Route StringTable Id - request
Id String - route
Propagating List<Property Map>Virtual Gateways - Information about virtual gateways propagating routes.
- route
Table StringId - The ID of the route table.
- routes List<Property Map>
- One or more routes in the route table.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
Supporting Types
RouteTableLinkRouteTable, RouteTableLinkRouteTableArgs
- Link
Route stringTable Id - The ID of the association between the route table and the Net or Subnet.
- Main bool
- If true, the route table is the main one.
- Route
Table stringId - The ID of the route table.
- Route
Table stringTo Subnet Link Id - Subnet
Id string - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
- Link
Route stringTable Id - The ID of the association between the route table and the Net or Subnet.
- Main bool
- If true, the route table is the main one.
- Route
Table stringId - The ID of the route table.
- Route
Table stringTo Subnet Link Id - Subnet
Id string - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
- link
Route StringTable Id - The ID of the association between the route table and the Net or Subnet.
- main Boolean
- If true, the route table is the main one.
- route
Table StringId - The ID of the route table.
- route
Table StringTo Subnet Link Id - subnet
Id String - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
- link
Route stringTable Id - The ID of the association between the route table and the Net or Subnet.
- main boolean
- If true, the route table is the main one.
- route
Table stringId - The ID of the route table.
- route
Table stringTo Subnet Link Id - subnet
Id string - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
- link_
route_ strtable_ id - The ID of the association between the route table and the Net or Subnet.
- main bool
- If true, the route table is the main one.
- route_
table_ strid - The ID of the route table.
- route_
table_ strto_ subnet_ link_ id - subnet_
id str - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
- link
Route StringTable Id - The ID of the association between the route table and the Net or Subnet.
- main Boolean
- If true, the route table is the main one.
- route
Table StringId - The ID of the route table.
- route
Table StringTo Subnet Link Id - subnet
Id String - The ID of the Subnet, if the route table is explicitly linked to a Subnet.
RouteTableRoute, RouteTableRouteArgs
- Creation
Method string - The method used to create the route.
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Destination
Service stringId - The ID of the OUTSCALE service.
- Gateway
Id string - The ID of the Internet service or virtual gateway attached to the Net.
- Nat
Service stringId - The ID of a NAT service attached to the Net.
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Peering stringId - The ID of the Net peering.
- Nic
Id string - The ID of the NIC.
- State string
- The state of a route in the route table (always
active
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of a VM specified in a route in the table.
- Creation
Method string - The method used to create the route.
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Destination
Service stringId - The ID of the OUTSCALE service.
- Gateway
Id string - The ID of the Internet service or virtual gateway attached to the Net.
- Nat
Service stringId - The ID of a NAT service attached to the Net.
- Net
Access stringPoint Id - The ID of the Net access point.
- Net
Peering stringId - The ID of the Net peering.
- Nic
Id string - The ID of the NIC.
- State string
- The state of a route in the route table (always
active
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of a VM specified in a route in the table.
- creation
Method String - The method used to create the route.
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - destination
Service StringId - The ID of the OUTSCALE service.
- gateway
Id String - The ID of the Internet service or virtual gateway attached to the Net.
- nat
Service StringId - The ID of a NAT service attached to the Net.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Peering StringId - The ID of the Net peering.
- nic
Id String - The ID of the NIC.
- state String
- The state of a route in the route table (always
active
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of a VM specified in a route in the table.
- creation
Method string - The method used to create the route.
- destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - destination
Service stringId - The ID of the OUTSCALE service.
- gateway
Id string - The ID of the Internet service or virtual gateway attached to the Net.
- nat
Service stringId - The ID of a NAT service attached to the Net.
- net
Access stringPoint Id - The ID of the Net access point.
- net
Peering stringId - The ID of the Net peering.
- nic
Id string - The ID of the NIC.
- state string
- The state of a route in the route table (always
active
). - vm
Account stringId - The account ID of the owner of the VM.
- vm
Id string - The ID of a VM specified in a route in the table.
- creation_
method str - The method used to create the route.
- destination_
ip_ strrange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - destination_
service_ strid - The ID of the OUTSCALE service.
- gateway_
id str - The ID of the Internet service or virtual gateway attached to the Net.
- nat_
service_ strid - The ID of a NAT service attached to the Net.
- net_
access_ strpoint_ id - The ID of the Net access point.
- net_
peering_ strid - The ID of the Net peering.
- nic_
id str - The ID of the NIC.
- state str
- The state of a route in the route table (always
active
). - vm_
account_ strid - The account ID of the owner of the VM.
- vm_
id str - The ID of a VM specified in a route in the table.
- creation
Method String - The method used to create the route.
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - destination
Service StringId - The ID of the OUTSCALE service.
- gateway
Id String - The ID of the Internet service or virtual gateway attached to the Net.
- nat
Service StringId - The ID of a NAT service attached to the Net.
- net
Access StringPoint Id - The ID of the Net access point.
- net
Peering StringId - The ID of the Net peering.
- nic
Id String - The ID of the NIC.
- state String
- The state of a route in the route table (always
active
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of a VM specified in a route in the table.
RouteTableRoutePropagatingVirtualGateway, RouteTableRoutePropagatingVirtualGatewayArgs
- Virtual
Gateway stringId - The ID of the virtual gateway.
- Virtual
Gateway stringId - The ID of the virtual gateway.
- virtual
Gateway StringId - The ID of the virtual gateway.
- virtual
Gateway stringId - The ID of the virtual gateway.
- virtual_
gateway_ strid - The ID of the virtual gateway.
- virtual
Gateway StringId - The ID of the virtual gateway.
RouteTableTag, RouteTableTagArgs
Import
A route table can be imported using its ID. For example:
console
$ pulumi import outscale:index/routeTable:RouteTable ImportedRouteTable rtb-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.