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,
});
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)
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
})
}
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,
});
});
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());
}
}
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}
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,
});
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"])
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
})
}
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,
});
});
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());
}
}
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}
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)
type: outscale:Route
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 RouteArgs
- 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 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 string
- The unique name of the resource.
- args RouteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RouteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
const routeResource = new outscale.Route("routeResource", {
destinationIpRange: "string",
routeTableId: "string",
awaitActiveState: false,
gatewayId: "string",
natServiceId: "string",
netPeeringId: "string",
nicId: "string",
routeId: "string",
vmId: "string",
});
type: outscale:Route
properties:
awaitActiveState: false
destinationIpRange: string
gatewayId: string
natServiceId: string
netPeeringId: string
nicId: string
routeId: string
routeTableId: string
vmId: string
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:
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Route
Table stringId - The ID of the route table for which you want to create a route.
- Await
Active boolState - 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 theactive
state if available, or theblackhole
state if not available. - Gateway
Id string - The ID of an Internet service or virtual gateway attached to your Net.
- Nat
Service stringId - The ID of a NAT service.
- Net
Peering stringId - The ID of a Net peering.
- Nic
Id string - The ID of a NIC.
- Route
Id string - Vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- Destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - Route
Table stringId - The ID of the route table for which you want to create a route.
- Await
Active boolState - 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 theactive
state if available, or theblackhole
state if not available. - Gateway
Id string - The ID of an Internet service or virtual gateway attached to your Net.
- Nat
Service stringId - The ID of a NAT service.
- Net
Peering stringId - The ID of a Net peering.
- Nic
Id string - The ID of a NIC.
- Route
Id string - Vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Table StringId - The ID of the route table for which you want to create a route.
- await
Active BooleanState - 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 theactive
state if available, or theblackhole
state if not available. - gateway
Id String - The ID of an Internet service or virtual gateway attached to your Net.
- nat
Service StringId - The ID of a NAT service.
- net
Peering StringId - The ID of a Net peering.
- nic
Id String - The ID of a NIC.
- route
Id String - vm
Id String - The ID of a NAT VM in your Net (attached to exactly one NIC).
- destination
Ip stringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Table stringId - The ID of the route table for which you want to create a route.
- await
Active booleanState - 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 theactive
state if available, or theblackhole
state if not available. - gateway
Id string - The ID of an Internet service or virtual gateway attached to your Net.
- nat
Service stringId - The ID of a NAT service.
- net
Peering stringId - The ID of a Net peering.
- nic
Id string - The ID of a NIC.
- route
Id string - vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- destination_
ip_ strrange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route_
table_ strid - The ID of the route table for which you want to create a route.
- await_
active_ boolstate - 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 theactive
state if available, or theblackhole
state if not available. - gateway_
id str - The ID of an Internet service or virtual gateway attached to your Net.
- nat_
service_ strid - The ID of a NAT service.
- net_
peering_ strid - 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).
- destination
Ip StringRange - The IP range used for the destination match, in CIDR notation (for example,
10.0.0.0/24
). - route
Table StringId - The ID of the route table for which you want to create a route.
- await
Active BooleanState - 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 theactive
state if available, or theblackhole
state if not available. - gateway
Id String - The ID of an Internet service or virtual gateway attached to your Net.
- nat
Service StringId - The ID of a NAT service.
- net
Peering StringId - The ID of a Net peering.
- nic
Id String - The ID of a NIC.
- route
Id String - vm
Id 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:
- Creation
Method string - The method used to create the route.
- Destination
Service stringId - The ID of the OUTSCALE service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Nat
Access stringPoint - Request
Id string - 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.
- Creation
Method string - The method used to create the route.
- Destination
Service stringId - The ID of the OUTSCALE service.
- Id string
- The provider-assigned unique ID for this managed resource.
- Nat
Access stringPoint - Request
Id string - 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.
- creation
Method String - The method used to create the route.
- destination
Service StringId - The ID of the OUTSCALE service.
- id String
- The provider-assigned unique ID for this managed resource.
- nat
Access StringPoint - request
Id String - 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.
- creation
Method string - The method used to create the route.
- destination
Service stringId - The ID of the OUTSCALE service.
- id string
- The provider-assigned unique ID for this managed resource.
- nat
Access stringPoint - request
Id string - 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.
- creation_
method str - The method used to create the route.
- destination_
service_ strid - The ID of the OUTSCALE service.
- id str
- The provider-assigned unique ID for this managed resource.
- nat_
access_ strpoint - request_
id str - 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.
- creation
Method String - The method used to create the route.
- destination
Service StringId - The ID of the OUTSCALE service.
- id String
- The provider-assigned unique ID for this managed resource.
- nat
Access StringPoint - request
Id String - 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.
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
- 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.
- Await
Active boolState - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- Nat
Access stringPoint - Nat
Service stringId - The ID of a NAT service.
- Net
Peering stringId - The ID of a Net peering.
- Nic
Id string - The ID of a NIC.
- Request
Id string - Route
Id string - Route
Table stringId - 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
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- Await
Active boolState - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- Nat
Access stringPoint - Nat
Service stringId - The ID of a NAT service.
- Net
Peering stringId - The ID of a Net peering.
- Nic
Id string - The ID of a NIC.
- Request
Id string - Route
Id string - Route
Table stringId - 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
). - Vm
Account stringId - The account ID of the owner of the VM.
- Vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- await
Active BooleanState - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- nat
Access StringPoint - nat
Service StringId - The ID of a NAT service.
- net
Peering StringId - The ID of a Net peering.
- nic
Id String - The ID of a NIC.
- request
Id String - route
Id String - route
Table StringId - 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
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id String - The ID of a NAT VM in your Net (attached to exactly one NIC).
- await
Active booleanState - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- nat
Access stringPoint - nat
Service stringId - The ID of a NAT service.
- net
Peering stringId - The ID of a Net peering.
- nic
Id string - The ID of a NIC.
- request
Id string - route
Id string - route
Table stringId - 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
). - vm
Account stringId - The account ID of the owner of the VM.
- vm
Id string - The ID of a NAT VM in your Net (attached to exactly one NIC).
- await_
active_ boolstate - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- nat_
access_ strpoint - nat_
service_ strid - The ID of a NAT service.
- net_
peering_ strid - The ID of a Net peering.
- nic_
id str - The ID of a NIC.
- request_
id str - route_
id str - route_
table_ strid - 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_ strid - 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).
- await
Active BooleanState - 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 theactive
state if available, or theblackhole
state if not available. - 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 an Internet service or virtual gateway attached to your Net.
- nat
Access StringPoint - nat
Service StringId - The ID of a NAT service.
- net
Peering StringId - The ID of a Net peering.
- nic
Id String - The ID of a NIC.
- request
Id String - route
Id String - route
Table StringId - 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
). - vm
Account StringId - The account ID of the owner of the VM.
- vm
Id 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
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.