1. Packages
  2. Outscale Provider
  3. API Docs
  4. RouteTable
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.RouteTable

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    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:

    NetId string
    The ID of the Net for which you want to create a route table.
    OutscaleRouteTableId string
    Tags List<RouteTableTag>
    A tag to add to this resource. You can specify this argument several times.
    NetId string
    The ID of the Net for which you want to create a route table.
    OutscaleRouteTableId string
    Tags []RouteTableTagArgs
    A tag to add to this resource. You can specify this argument several times.
    netId String
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId String
    tags List<RouteTableTag>
    A tag to add to this resource. You can specify this argument several times.
    netId string
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId string
    tags RouteTableTag[]
    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_table_id str
    tags Sequence[RouteTableTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    netId String
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId String
    tags 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.
    LinkRouteTables List<RouteTableLinkRouteTable>
    One or more associations between the route table and Subnets.
    RequestId string
    RoutePropagatingVirtualGateways List<RouteTableRoutePropagatingVirtualGateway>
    Information about virtual gateways propagating routes.
    RouteTableId string
    The ID of the route table.
    Routes List<RouteTableRoute>
    One or more routes in the route table.
    Id string
    The provider-assigned unique ID for this managed resource.
    LinkRouteTables []RouteTableLinkRouteTable
    One or more associations between the route table and Subnets.
    RequestId string
    RoutePropagatingVirtualGateways []RouteTableRoutePropagatingVirtualGateway
    Information about virtual gateways propagating routes.
    RouteTableId string
    The ID of the route table.
    Routes []RouteTableRoute
    One or more routes in the route table.
    id String
    The provider-assigned unique ID for this managed resource.
    linkRouteTables List<RouteTableLinkRouteTable>
    One or more associations between the route table and Subnets.
    requestId String
    routePropagatingVirtualGateways List<RouteTableRoutePropagatingVirtualGateway>
    Information about virtual gateways propagating routes.
    routeTableId String
    The ID of the route table.
    routes List<RouteTableRoute>
    One or more routes in the route table.
    id string
    The provider-assigned unique ID for this managed resource.
    linkRouteTables RouteTableLinkRouteTable[]
    One or more associations between the route table and Subnets.
    requestId string
    routePropagatingVirtualGateways RouteTableRoutePropagatingVirtualGateway[]
    Information about virtual gateways propagating routes.
    routeTableId string
    The ID of the route table.
    routes RouteTableRoute[]
    One or more routes in the route table.
    id str
    The provider-assigned unique ID for this managed resource.
    link_route_tables Sequence[RouteTableLinkRouteTable]
    One or more associations between the route table and Subnets.
    request_id str
    route_propagating_virtual_gateways Sequence[RouteTableRoutePropagatingVirtualGateway]
    Information about virtual gateways propagating routes.
    route_table_id str
    The ID of the route table.
    routes Sequence[RouteTableRoute]
    One or more routes in the route table.
    id String
    The provider-assigned unique ID for this managed resource.
    linkRouteTables List<Property Map>
    One or more associations between the route table and Subnets.
    requestId String
    routePropagatingVirtualGateways List<Property Map>
    Information about virtual gateways propagating routes.
    routeTableId String
    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.
    The following state arguments are supported:
    LinkRouteTables List<RouteTableLinkRouteTable>
    One or more associations between the route table and Subnets.
    NetId string
    The ID of the Net for which you want to create a route table.
    OutscaleRouteTableId string
    RequestId string
    RoutePropagatingVirtualGateways List<RouteTableRoutePropagatingVirtualGateway>
    Information about virtual gateways propagating routes.
    RouteTableId string
    The ID of the route table.
    Routes List<RouteTableRoute>
    One or more routes in the route table.
    Tags List<RouteTableTag>
    A tag to add to this resource. You can specify this argument several times.
    LinkRouteTables []RouteTableLinkRouteTableArgs
    One or more associations between the route table and Subnets.
    NetId string
    The ID of the Net for which you want to create a route table.
    OutscaleRouteTableId string
    RequestId string
    RoutePropagatingVirtualGateways []RouteTableRoutePropagatingVirtualGatewayArgs
    Information about virtual gateways propagating routes.
    RouteTableId string
    The ID of the route table.
    Routes []RouteTableRouteArgs
    One or more routes in the route table.
    Tags []RouteTableTagArgs
    A tag to add to this resource. You can specify this argument several times.
    linkRouteTables List<RouteTableLinkRouteTable>
    One or more associations between the route table and Subnets.
    netId String
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId String
    requestId String
    routePropagatingVirtualGateways List<RouteTableRoutePropagatingVirtualGateway>
    Information about virtual gateways propagating routes.
    routeTableId String
    The ID of the route table.
    routes List<RouteTableRoute>
    One or more routes in the route table.
    tags List<RouteTableTag>
    A tag to add to this resource. You can specify this argument several times.
    linkRouteTables RouteTableLinkRouteTable[]
    One or more associations between the route table and Subnets.
    netId string
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId string
    requestId string
    routePropagatingVirtualGateways RouteTableRoutePropagatingVirtualGateway[]
    Information about virtual gateways propagating routes.
    routeTableId string
    The ID of the route table.
    routes RouteTableRoute[]
    One or more routes in the route table.
    tags RouteTableTag[]
    A tag to add to this resource. You can specify this argument several times.
    link_route_tables Sequence[RouteTableLinkRouteTableArgs]
    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_table_id str
    request_id str
    route_propagating_virtual_gateways Sequence[RouteTableRoutePropagatingVirtualGatewayArgs]
    Information about virtual gateways propagating routes.
    route_table_id str
    The ID of the route table.
    routes Sequence[RouteTableRouteArgs]
    One or more routes in the route table.
    tags Sequence[RouteTableTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    linkRouteTables List<Property Map>
    One or more associations between the route table and Subnets.
    netId String
    The ID of the Net for which you want to create a route table.
    outscaleRouteTableId String
    requestId String
    routePropagatingVirtualGateways List<Property Map>
    Information about virtual gateways propagating routes.
    routeTableId String
    The ID of the route table.
    routes List<Property Map>
    One or more routes in the route table.
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.

    Supporting Types

    RouteTableLinkRouteTable, RouteTableLinkRouteTableArgs

    LinkRouteTableId string
    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.
    RouteTableId string
    The ID of the route table.
    RouteTableToSubnetLinkId string
    SubnetId string
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.
    LinkRouteTableId string
    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.
    RouteTableId string
    The ID of the route table.
    RouteTableToSubnetLinkId string
    SubnetId string
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.
    linkRouteTableId String
    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.
    routeTableId String
    The ID of the route table.
    routeTableToSubnetLinkId String
    subnetId String
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.
    linkRouteTableId string
    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.
    routeTableId string
    The ID of the route table.
    routeTableToSubnetLinkId string
    subnetId string
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.
    link_route_table_id str
    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_id str
    The ID of the route table.
    route_table_to_subnet_link_id str
    subnet_id str
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.
    linkRouteTableId String
    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.
    routeTableId String
    The ID of the route table.
    routeTableToSubnetLinkId String
    subnetId String
    The ID of the Subnet, if the route table is explicitly linked to a Subnet.

    RouteTableRoute, RouteTableRouteArgs

    CreationMethod string
    The method used to create the route.
    DestinationIpRange string
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    DestinationServiceId string
    The ID of the OUTSCALE service.
    GatewayId string
    The ID of the Internet service or virtual gateway attached to the Net.
    NatServiceId string
    The ID of a NAT service attached to the Net.
    NetAccessPointId string
    The ID of the Net access point.
    NetPeeringId string
    The ID of the Net peering.
    NicId string
    The ID of the NIC.
    State string
    The state of a route in the route table (always active).
    VmAccountId string
    The account ID of the owner of the VM.
    VmId string
    The ID of a VM specified in a route in the table.
    CreationMethod string
    The method used to create the route.
    DestinationIpRange string
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    DestinationServiceId string
    The ID of the OUTSCALE service.
    GatewayId string
    The ID of the Internet service or virtual gateway attached to the Net.
    NatServiceId string
    The ID of a NAT service attached to the Net.
    NetAccessPointId string
    The ID of the Net access point.
    NetPeeringId string
    The ID of the Net peering.
    NicId string
    The ID of the NIC.
    State string
    The state of a route in the route table (always active).
    VmAccountId string
    The account ID of the owner of the VM.
    VmId string
    The ID of a VM specified in a route in the table.
    creationMethod String
    The method used to create the route.
    destinationIpRange String
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    destinationServiceId String
    The ID of the OUTSCALE service.
    gatewayId String
    The ID of the Internet service or virtual gateway attached to the Net.
    natServiceId String
    The ID of a NAT service attached to the Net.
    netAccessPointId String
    The ID of the Net access point.
    netPeeringId String
    The ID of the Net peering.
    nicId String
    The ID of the NIC.
    state String
    The state of a route in the route table (always active).
    vmAccountId String
    The account ID of the owner of the VM.
    vmId String
    The ID of a VM specified in a route in the table.
    creationMethod string
    The method used to create the route.
    destinationIpRange string
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    destinationServiceId string
    The ID of the OUTSCALE service.
    gatewayId string
    The ID of the Internet service or virtual gateway attached to the Net.
    natServiceId string
    The ID of a NAT service attached to the Net.
    netAccessPointId string
    The ID of the Net access point.
    netPeeringId string
    The ID of the Net peering.
    nicId string
    The ID of the NIC.
    state string
    The state of a route in the route table (always active).
    vmAccountId string
    The account ID of the owner of the VM.
    vmId 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_range str
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    destination_service_id str
    The ID of the OUTSCALE service.
    gateway_id str
    The ID of the Internet service or virtual gateway attached to the Net.
    nat_service_id str
    The ID of a NAT service attached to the Net.
    net_access_point_id str
    The ID of the Net access point.
    net_peering_id str
    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_id str
    The account ID of the owner of the VM.
    vm_id str
    The ID of a VM specified in a route in the table.
    creationMethod String
    The method used to create the route.
    destinationIpRange String
    The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
    destinationServiceId String
    The ID of the OUTSCALE service.
    gatewayId String
    The ID of the Internet service or virtual gateway attached to the Net.
    natServiceId String
    The ID of a NAT service attached to the Net.
    netAccessPointId String
    The ID of the Net access point.
    netPeeringId String
    The ID of the Net peering.
    nicId String
    The ID of the NIC.
    state String
    The state of a route in the route table (always active).
    vmAccountId String
    The account ID of the owner of the VM.
    vmId String
    The ID of a VM specified in a route in the table.

    RouteTableRoutePropagatingVirtualGateway, RouteTableRoutePropagatingVirtualGatewayArgs

    VirtualGatewayId string
    The ID of the virtual gateway.
    VirtualGatewayId string
    The ID of the virtual gateway.
    virtualGatewayId String
    The ID of the virtual gateway.
    virtualGatewayId string
    The ID of the virtual gateway.
    virtual_gateway_id str
    The ID of the virtual gateway.
    virtualGatewayId String
    The ID of the virtual gateway.

    RouteTableTag, RouteTableTagArgs

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    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.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale