1. Packages
  2. Outscale Provider
  3. API Docs
  4. Route
outscale 1.1.0 published on Thursday, Apr 3, 2025 by outscale

outscale.Route

Explore with Pulumi AI

Manages a route.

For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.

Example Usage

Required resources

import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";

const net01 = new outscale.Net("net01", {ipRange: "10.0.0.0/16"});
const routeTable01 = new outscale.RouteTable("routeTable01", {netId: net01.netId});
const internetService01 = new outscale.InternetService("internetService01", {});
const internetServiceLink01 = new outscale.InternetServiceLink("internetServiceLink01", {
    internetServiceId: internetService01.internetServiceId,
    netId: net01.netId,
});
Copy
import pulumi
import pulumi_outscale as outscale

net01 = outscale.Net("net01", ip_range="10.0.0.0/16")
route_table01 = outscale.RouteTable("routeTable01", net_id=net01.net_id)
internet_service01 = outscale.InternetService("internetService01")
internet_service_link01 = outscale.InternetServiceLink("internetServiceLink01",
    internet_service_id=internet_service01.internet_service_id,
    net_id=net01.net_id)
Copy
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 {
		net01, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
			IpRange: pulumi.String("10.0.0.0/16"),
		})
		if err != nil {
			return err
		}
		_, err = outscale.NewRouteTable(ctx, "routeTable01", &outscale.RouteTableArgs{
			NetId: net01.NetId,
		})
		if err != nil {
			return err
		}
		internetService01, err := outscale.NewInternetService(ctx, "internetService01", nil)
		if err != nil {
			return err
		}
		_, err = outscale.NewInternetServiceLink(ctx, "internetServiceLink01", &outscale.InternetServiceLinkArgs{
			InternetServiceId: internetService01.InternetServiceId,
			NetId:             net01.NetId,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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",
    });

    var routeTable01 = new Outscale.RouteTable("routeTable01", new()
    {
        NetId = net01.NetId,
    });

    var internetService01 = new Outscale.InternetService("internetService01");

    var internetServiceLink01 = new Outscale.InternetServiceLink("internetServiceLink01", new()
    {
        InternetServiceId = internetService01.InternetServiceId,
        NetId = net01.NetId,
    });

});
Copy
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 com.pulumi.outscale.RouteTable;
import com.pulumi.outscale.RouteTableArgs;
import com.pulumi.outscale.InternetService;
import com.pulumi.outscale.InternetServiceLink;
import com.pulumi.outscale.InternetServiceLinkArgs;
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());

        var routeTable01 = new RouteTable("routeTable01", RouteTableArgs.builder()
            .netId(net01.netId())
            .build());

        var internetService01 = new InternetService("internetService01");

        var internetServiceLink01 = new InternetServiceLink("internetServiceLink01", InternetServiceLinkArgs.builder()
            .internetServiceId(internetService01.internetServiceId())
            .netId(net01.netId())
            .build());

    }
}
Copy
resources:
  net01:
    type: outscale:Net
    properties:
      ipRange: 10.0.0.0/16
  routeTable01:
    type: outscale:RouteTable
    properties:
      netId: ${net01.netId}
  internetService01:
    type: outscale:InternetService
  internetServiceLink01:
    type: outscale:InternetServiceLink
    properties:
      internetServiceId: ${internetService01.internetServiceId}
      netId: ${net01.netId}
Copy

Create a route to an Internet service

import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";

const route01 = new outscale.Route("route01", {
    gatewayId: outscale_internet_service.internet_service01.internet_service_id,
    destinationIpRange: "0.0.0.0/0",
    routeTableId: outscale_route_table.route_table01.route_table_id,
});
Copy
import pulumi
import pulumi_outscale as outscale

route01 = outscale.Route("route01",
    gateway_id=outscale_internet_service["internet_service01"]["internet_service_id"],
    destination_ip_range="0.0.0.0/0",
    route_table_id=outscale_route_table["route_table01"]["route_table_id"])
Copy
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.NewRoute(ctx, "route01", &outscale.RouteArgs{
			GatewayId:          pulumi.Any(outscale_internet_service.Internet_service01.Internet_service_id),
			DestinationIpRange: pulumi.String("0.0.0.0/0"),
			RouteTableId:       pulumi.Any(outscale_route_table.Route_table01.Route_table_id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;

return await Deployment.RunAsync(() => 
{
    var route01 = new Outscale.Route("route01", new()
    {
        GatewayId = outscale_internet_service.Internet_service01.Internet_service_id,
        DestinationIpRange = "0.0.0.0/0",
        RouteTableId = outscale_route_table.Route_table01.Route_table_id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Route;
import com.pulumi.outscale.RouteArgs;
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 route01 = new Route("route01", RouteArgs.builder()
            .gatewayId(outscale_internet_service.internet_service01().internet_service_id())
            .destinationIpRange("0.0.0.0/0")
            .routeTableId(outscale_route_table.route_table01().route_table_id())
            .build());

    }
}
Copy
resources:
  route01:
    type: outscale:Route
    properties:
      gatewayId: ${outscale_internet_service.internet_service01.internet_service_id}
      destinationIpRange: 0.0.0.0/0
      routeTableId: ${outscale_route_table.route_table01.route_table_id}
Copy

Create Route Resource

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

Constructor syntax

new Route(name: string, args: RouteArgs, opts?: CustomResourceOptions);
@overload
def Route(resource_name: str,
          args: RouteArgs,
          opts: Optional[ResourceOptions] = None)

@overload
def Route(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          destination_ip_range: Optional[str] = None,
          route_table_id: Optional[str] = None,
          await_active_state: Optional[bool] = None,
          gateway_id: Optional[str] = None,
          nat_service_id: Optional[str] = None,
          net_peering_id: Optional[str] = None,
          nic_id: Optional[str] = None,
          route_id: Optional[str] = None,
          vm_id: Optional[str] = None)
func NewRoute(ctx *Context, name string, args RouteArgs, opts ...ResourceOption) (*Route, error)
public Route(string name, RouteArgs args, CustomResourceOptions? opts = null)
public Route(String name, RouteArgs args)
public Route(String name, RouteArgs args, CustomResourceOptions options)
type: outscale:Route
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. RouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. RouteArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. RouteArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. RouteArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. RouteArgs
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 routeResource = new Outscale.Route("routeResource", new()
{
    DestinationIpRange = "string",
    RouteTableId = "string",
    AwaitActiveState = false,
    GatewayId = "string",
    NatServiceId = "string",
    NetPeeringId = "string",
    NicId = "string",
    RouteId = "string",
    VmId = "string",
});
Copy
example, err := outscale.NewRoute(ctx, "routeResource", &outscale.RouteArgs{
	DestinationIpRange: pulumi.String("string"),
	RouteTableId:       pulumi.String("string"),
	AwaitActiveState:   pulumi.Bool(false),
	GatewayId:          pulumi.String("string"),
	NatServiceId:       pulumi.String("string"),
	NetPeeringId:       pulumi.String("string"),
	NicId:              pulumi.String("string"),
	RouteId:            pulumi.String("string"),
	VmId:               pulumi.String("string"),
})
Copy
var routeResource = new Route("routeResource", RouteArgs.builder()
    .destinationIpRange("string")
    .routeTableId("string")
    .awaitActiveState(false)
    .gatewayId("string")
    .natServiceId("string")
    .netPeeringId("string")
    .nicId("string")
    .routeId("string")
    .vmId("string")
    .build());
Copy
route_resource = outscale.Route("routeResource",
    destination_ip_range="string",
    route_table_id="string",
    await_active_state=False,
    gateway_id="string",
    nat_service_id="string",
    net_peering_id="string",
    nic_id="string",
    route_id="string",
    vm_id="string")
Copy
const routeResource = new outscale.Route("routeResource", {
    destinationIpRange: "string",
    routeTableId: "string",
    awaitActiveState: false,
    gatewayId: "string",
    natServiceId: "string",
    netPeeringId: "string",
    nicId: "string",
    routeId: "string",
    vmId: "string",
});
Copy
type: outscale:Route
properties:
    awaitActiveState: false
    destinationIpRange: string
    gatewayId: string
    natServiceId: string
    netPeeringId: string
    nicId: string
    routeId: string
    routeTableId: string
    vmId: string
Copy

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

DestinationIpRange This property is required. string
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
RouteTableId This property is required. string
The ID of the route table for which you want to create a route.
AwaitActiveState bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
GatewayId string
The ID of an internet service or virtual gateway attached to your Net.
NatServiceId string
The ID of a NAT service.
NetPeeringId string
The ID of a Net peering.
NicId string
The ID of a NIC.
RouteId string
VmId string
The ID of a NAT VM in your Net (attached to exactly one NIC).
DestinationIpRange This property is required. string
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
RouteTableId This property is required. string
The ID of the route table for which you want to create a route.
AwaitActiveState bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
GatewayId string
The ID of an internet service or virtual gateway attached to your Net.
NatServiceId string
The ID of a NAT service.
NetPeeringId string
The ID of a Net peering.
NicId string
The ID of a NIC.
RouteId string
VmId string
The ID of a NAT VM in your Net (attached to exactly one NIC).
destinationIpRange This property is required. String
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
routeTableId This property is required. String
The ID of the route table for which you want to create a route.
awaitActiveState Boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
gatewayId String
The ID of an internet service or virtual gateway attached to your Net.
natServiceId String
The ID of a NAT service.
netPeeringId String
The ID of a Net peering.
nicId String
The ID of a NIC.
routeId String
vmId String
The ID of a NAT VM in your Net (attached to exactly one NIC).
destinationIpRange This property is required. string
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
routeTableId This property is required. string
The ID of the route table for which you want to create a route.
awaitActiveState boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
gatewayId string
The ID of an internet service or virtual gateway attached to your Net.
natServiceId string
The ID of a NAT service.
netPeeringId string
The ID of a Net peering.
nicId string
The ID of a NIC.
routeId string
vmId string
The ID of a NAT VM in your Net (attached to exactly one NIC).
destination_ip_range This property is required. str
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
route_table_id This property is required. str
The ID of the route table for which you want to create a route.
await_active_state bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
gateway_id str
The ID of an internet service or virtual gateway attached to your Net.
nat_service_id str
The ID of a NAT service.
net_peering_id str
The ID of a Net peering.
nic_id str
The ID of a NIC.
route_id str
vm_id str
The ID of a NAT VM in your Net (attached to exactly one NIC).
destinationIpRange This property is required. String
The IP range used for the destination match, in CIDR notation (for example, 10.0.0.0/24).
routeTableId This property is required. String
The ID of the route table for which you want to create a route.
awaitActiveState Boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
gatewayId String
The ID of an internet service or virtual gateway attached to your Net.
natServiceId String
The ID of a NAT service.
netPeeringId String
The ID of a Net peering.
nicId String
The ID of a NIC.
routeId String
vmId String
The ID of a NAT VM in your Net (attached to exactly one NIC).

Outputs

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

CreationMethod string
The method used to create the route.
DestinationServiceId string
The ID of the OUTSCALE service.
Id string
The provider-assigned unique ID for this managed resource.
NatAccessPoint string
RequestId string
State string
The state of a route in the route table (always active).
VmAccountId string
The account ID of the owner of the VM.
CreationMethod string
The method used to create the route.
DestinationServiceId string
The ID of the OUTSCALE service.
Id string
The provider-assigned unique ID for this managed resource.
NatAccessPoint string
RequestId string
State string
The state of a route in the route table (always active).
VmAccountId string
The account ID of the owner of the VM.
creationMethod String
The method used to create the route.
destinationServiceId String
The ID of the OUTSCALE service.
id String
The provider-assigned unique ID for this managed resource.
natAccessPoint String
requestId String
state String
The state of a route in the route table (always active).
vmAccountId String
The account ID of the owner of the VM.
creationMethod string
The method used to create the route.
destinationServiceId string
The ID of the OUTSCALE service.
id string
The provider-assigned unique ID for this managed resource.
natAccessPoint string
requestId string
state string
The state of a route in the route table (always active).
vmAccountId string
The account ID of the owner of the VM.
creation_method str
The method used to create the route.
destination_service_id str
The ID of the OUTSCALE service.
id str
The provider-assigned unique ID for this managed resource.
nat_access_point str
request_id str
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.
creationMethod String
The method used to create the route.
destinationServiceId String
The ID of the OUTSCALE service.
id String
The provider-assigned unique ID for this managed resource.
natAccessPoint String
requestId String
state String
The state of a route in the route table (always active).
vmAccountId String
The account ID of the owner of the VM.

Look up Existing Route Resource

Get an existing Route 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?: RouteState, opts?: CustomResourceOptions): Route
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        await_active_state: Optional[bool] = None,
        creation_method: Optional[str] = None,
        destination_ip_range: Optional[str] = None,
        destination_service_id: Optional[str] = None,
        gateway_id: Optional[str] = None,
        nat_access_point: Optional[str] = None,
        nat_service_id: Optional[str] = None,
        net_peering_id: Optional[str] = None,
        nic_id: Optional[str] = None,
        request_id: Optional[str] = None,
        route_id: Optional[str] = None,
        route_table_id: Optional[str] = None,
        state: Optional[str] = None,
        vm_account_id: Optional[str] = None,
        vm_id: Optional[str] = None) -> Route
func GetRoute(ctx *Context, name string, id IDInput, state *RouteState, opts ...ResourceOption) (*Route, error)
public static Route Get(string name, Input<string> id, RouteState? state, CustomResourceOptions? opts = null)
public static Route get(String name, Output<String> id, RouteState state, CustomResourceOptions options)
resources:  _:    type: outscale:Route    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AwaitActiveState bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
NatAccessPoint string
NatServiceId string
The ID of a NAT service.
NetPeeringId string
The ID of a Net peering.
NicId string
The ID of a NIC.
RequestId string
RouteId string
RouteTableId string
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).
AwaitActiveState bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
NatAccessPoint string
NatServiceId string
The ID of a NAT service.
NetPeeringId string
The ID of a Net peering.
NicId string
The ID of a NIC.
RequestId string
RouteId string
RouteTableId string
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).
awaitActiveState Boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
natAccessPoint String
natServiceId String
The ID of a NAT service.
netPeeringId String
The ID of a Net peering.
nicId String
The ID of a NIC.
requestId String
routeId String
routeTableId String
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).
awaitActiveState boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
natAccessPoint string
natServiceId string
The ID of a NAT service.
netPeeringId string
The ID of a Net peering.
nicId string
The ID of a NIC.
requestId string
routeId string
routeTableId string
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).
await_active_state bool
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
nat_access_point str
nat_service_id str
The ID of a NAT service.
net_peering_id str
The ID of a Net peering.
nic_id str
The ID of a NIC.
request_id str
route_id str
route_table_id str
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).
awaitActiveState Boolean
By default or if set to true, waits for the route to be in the active state to declare its successful creation.If false, the created route is in the active state if available, or the blackhole state if not available.
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 an internet service or virtual gateway attached to your Net.
natAccessPoint String
natServiceId String
The ID of a NAT service.
netPeeringId String
The ID of a Net peering.
nicId String
The ID of a NIC.
requestId String
routeId String
routeTableId String
The ID of the route table for which you want to create a route.
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 NAT VM in your Net (attached to exactly one NIC).

Import

A route can be imported using the route table ID and the destination IP range. For example:

console

$ pulumi import outscale:index/route:Route outscale_routeImportedRoute rtb-12345678_10.0.0.0/0
Copy

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.