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

outscale.NetPeering

Explore with Pulumi AI

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

    Manages a Net peering.

    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.10.0.0/24"});
    const net02 = new outscale.Net("net02", {ipRange: "10.31.0.0/16"});
    
    import pulumi
    import pulumi_outscale as outscale
    
    net01 = outscale.Net("net01", ip_range="10.10.0.0/24")
    net02 = outscale.Net("net02", ip_range="10.31.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.10.0.0/24"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = outscale.NewNet(ctx, "net02", &outscale.NetArgs{
    			IpRange: pulumi.String("10.31.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.10.0.0/24",
        });
    
        var net02 = new Outscale.Net("net02", new()
        {
            IpRange = "10.31.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.10.0.0/24")
                .build());
    
            var net02 = new Net("net02", NetArgs.builder()
                .ipRange("10.31.0.0/16")
                .build());
    
        }
    }
    
    resources:
      net01:
        type: outscale:Net
        properties:
          ipRange: 10.10.0.0/24
      net02:
        type: outscale:Net
        properties:
          ipRange: 10.31.0.0/16
    

    Peer Nets

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const netPeering01 = new outscale.NetPeering("netPeering01", {
        accepterNetId: outscale_net.net01.net_id,
        sourceNetId: outscale_net.net02.net_id,
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    net_peering01 = outscale.NetPeering("netPeering01",
        accepter_net_id=outscale_net["net01"]["net_id"],
        source_net_id=outscale_net["net02"]["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.NewNetPeering(ctx, "netPeering01", &outscale.NetPeeringArgs{
    			AccepterNetId: pulumi.Any(outscale_net.Net01.Net_id),
    			SourceNetId:   pulumi.Any(outscale_net.Net02.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 netPeering01 = new Outscale.NetPeering("netPeering01", new()
        {
            AccepterNetId = outscale_net.Net01.Net_id,
            SourceNetId = outscale_net.Net02.Net_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.NetPeering;
    import com.pulumi.outscale.NetPeeringArgs;
    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 netPeering01 = new NetPeering("netPeering01", NetPeeringArgs.builder()
                .accepterNetId(outscale_net.net01().net_id())
                .sourceNetId(outscale_net.net02().net_id())
                .build());
    
        }
    }
    
    resources:
      netPeering01:
        type: outscale:NetPeering
        properties:
          accepterNetId: ${outscale_net.net01.net_id}
          sourceNetId: ${outscale_net.net02.net_id}
    

    Create NetPeering Resource

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

    Constructor syntax

    new NetPeering(name: string, args: NetPeeringArgs, opts?: CustomResourceOptions);
    @overload
    def NetPeering(resource_name: str,
                   args: NetPeeringArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetPeering(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   accepter_net_id: Optional[str] = None,
                   accepter_owner_id: Optional[str] = None,
                   source_net_id: Optional[str] = None,
                   outscale_net_peering_id: Optional[str] = None,
                   source_net_account_id: Optional[str] = None,
                   tags: Optional[Sequence[NetPeeringTagArgs]] = None)
    func NewNetPeering(ctx *Context, name string, args NetPeeringArgs, opts ...ResourceOption) (*NetPeering, error)
    public NetPeering(string name, NetPeeringArgs args, CustomResourceOptions? opts = null)
    public NetPeering(String name, NetPeeringArgs args)
    public NetPeering(String name, NetPeeringArgs args, CustomResourceOptions options)
    
    type: outscale:NetPeering
    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 NetPeeringArgs
    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 NetPeeringArgs
    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 NetPeeringArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetPeeringArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetPeeringArgs
    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 netPeeringResource = new Outscale.NetPeering("netPeeringResource", new()
    {
        AccepterNetId = "string",
        AccepterOwnerId = "string",
        SourceNetId = "string",
        OutscaleNetPeeringId = "string",
        SourceNetAccountId = "string",
        Tags = new[]
        {
            new Outscale.Inputs.NetPeeringTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
    });
    
    example, err := outscale.NewNetPeering(ctx, "netPeeringResource", &outscale.NetPeeringArgs{
    AccepterNetId: pulumi.String("string"),
    AccepterOwnerId: pulumi.String("string"),
    SourceNetId: pulumi.String("string"),
    OutscaleNetPeeringId: pulumi.String("string"),
    SourceNetAccountId: pulumi.String("string"),
    Tags: .NetPeeringTagArray{
    &.NetPeeringTagArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    })
    
    var netPeeringResource = new NetPeering("netPeeringResource", NetPeeringArgs.builder()
        .accepterNetId("string")
        .accepterOwnerId("string")
        .sourceNetId("string")
        .outscaleNetPeeringId("string")
        .sourceNetAccountId("string")
        .tags(NetPeeringTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .build());
    
    net_peering_resource = outscale.NetPeering("netPeeringResource",
        accepter_net_id="string",
        accepter_owner_id="string",
        source_net_id="string",
        outscale_net_peering_id="string",
        source_net_account_id="string",
        tags=[{
            "key": "string",
            "value": "string",
        }])
    
    const netPeeringResource = new outscale.NetPeering("netPeeringResource", {
        accepterNetId: "string",
        accepterOwnerId: "string",
        sourceNetId: "string",
        outscaleNetPeeringId: "string",
        sourceNetAccountId: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    type: outscale:NetPeering
    properties:
        accepterNetId: string
        accepterOwnerId: string
        outscaleNetPeeringId: string
        sourceNetAccountId: string
        sourceNetId: string
        tags:
            - key: string
              value: string
    

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

    AccepterNetId string
    The ID of the Net you want to connect with.
    AccepterOwnerId string
    SourceNetId string
    The ID of the Net you send the peering request from.
    OutscaleNetPeeringId string
    SourceNetAccountId string
    Tags List<NetPeeringTag>
    A tag to add to this resource. You can specify this argument several times.
    AccepterNetId string
    The ID of the Net you want to connect with.
    AccepterOwnerId string
    SourceNetId string
    The ID of the Net you send the peering request from.
    OutscaleNetPeeringId string
    SourceNetAccountId string
    Tags []NetPeeringTagArgs
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId String
    The ID of the Net you want to connect with.
    accepterOwnerId String
    sourceNetId String
    The ID of the Net you send the peering request from.
    outscaleNetPeeringId String
    sourceNetAccountId String
    tags List<NetPeeringTag>
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId string
    The ID of the Net you want to connect with.
    accepterOwnerId string
    sourceNetId string
    The ID of the Net you send the peering request from.
    outscaleNetPeeringId string
    sourceNetAccountId string
    tags NetPeeringTag[]
    A tag to add to this resource. You can specify this argument several times.
    accepter_net_id str
    The ID of the Net you want to connect with.
    accepter_owner_id str
    source_net_id str
    The ID of the Net you send the peering request from.
    outscale_net_peering_id str
    source_net_account_id str
    tags Sequence[NetPeeringTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId String
    The ID of the Net you want to connect with.
    accepterOwnerId String
    sourceNetId String
    The ID of the Net you send the peering request from.
    outscaleNetPeeringId String
    sourceNetAccountId 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 NetPeering resource produces the following output properties:

    AccepterNets List<NetPeeringAccepterNet>
    Information about the accepter Net.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetPeeringId string
    The ID of the Net peering.
    RequestId string
    SourceNets List<NetPeeringSourceNet>
    Information about the source Net.
    States List<NetPeeringState>
    Information about the state of the Net peering.
    AccepterNets []NetPeeringAccepterNet
    Information about the accepter Net.
    Id string
    The provider-assigned unique ID for this managed resource.
    NetPeeringId string
    The ID of the Net peering.
    RequestId string
    SourceNets []NetPeeringSourceNet
    Information about the source Net.
    States []NetPeeringStateType
    Information about the state of the Net peering.
    accepterNets List<NetPeeringAccepterNet>
    Information about the accepter Net.
    id String
    The provider-assigned unique ID for this managed resource.
    netPeeringId String
    The ID of the Net peering.
    requestId String
    sourceNets List<NetPeeringSourceNet>
    Information about the source Net.
    states List<NetPeeringState>
    Information about the state of the Net peering.
    accepterNets NetPeeringAccepterNet[]
    Information about the accepter Net.
    id string
    The provider-assigned unique ID for this managed resource.
    netPeeringId string
    The ID of the Net peering.
    requestId string
    sourceNets NetPeeringSourceNet[]
    Information about the source Net.
    states NetPeeringState[]
    Information about the state of the Net peering.
    accepter_nets Sequence[NetPeeringAccepterNet]
    Information about the accepter Net.
    id str
    The provider-assigned unique ID for this managed resource.
    net_peering_id str
    The ID of the Net peering.
    request_id str
    source_nets Sequence[NetPeeringSourceNet]
    Information about the source Net.
    states Sequence[NetPeeringState]
    Information about the state of the Net peering.
    accepterNets List<Property Map>
    Information about the accepter Net.
    id String
    The provider-assigned unique ID for this managed resource.
    netPeeringId String
    The ID of the Net peering.
    requestId String
    sourceNets List<Property Map>
    Information about the source Net.
    states List<Property Map>
    Information about the state of the Net peering.

    Look up Existing NetPeering Resource

    Get an existing NetPeering 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?: NetPeeringState, opts?: CustomResourceOptions): NetPeering
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accepter_net_id: Optional[str] = None,
            accepter_nets: Optional[Sequence[NetPeeringAccepterNetArgs]] = None,
            accepter_owner_id: Optional[str] = None,
            net_peering_id: Optional[str] = None,
            outscale_net_peering_id: Optional[str] = None,
            request_id: Optional[str] = None,
            source_net_account_id: Optional[str] = None,
            source_net_id: Optional[str] = None,
            source_nets: Optional[Sequence[NetPeeringSourceNetArgs]] = None,
            states: Optional[Sequence[NetPeeringStateArgs]] = None,
            tags: Optional[Sequence[NetPeeringTagArgs]] = None) -> NetPeering
    func GetNetPeering(ctx *Context, name string, id IDInput, state *NetPeeringState, opts ...ResourceOption) (*NetPeering, error)
    public static NetPeering Get(string name, Input<string> id, NetPeeringState? state, CustomResourceOptions? opts = null)
    public static NetPeering get(String name, Output<String> id, NetPeeringState state, CustomResourceOptions options)
    resources:  _:    type: outscale:NetPeering    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:
    AccepterNetId string
    The ID of the Net you want to connect with.
    AccepterNets List<NetPeeringAccepterNet>
    Information about the accepter Net.
    AccepterOwnerId string
    NetPeeringId string
    The ID of the Net peering.
    OutscaleNetPeeringId string
    RequestId string
    SourceNetAccountId string
    SourceNetId string
    The ID of the Net you send the peering request from.
    SourceNets List<NetPeeringSourceNet>
    Information about the source Net.
    States List<NetPeeringState>
    Information about the state of the Net peering.
    Tags List<NetPeeringTag>
    A tag to add to this resource. You can specify this argument several times.
    AccepterNetId string
    The ID of the Net you want to connect with.
    AccepterNets []NetPeeringAccepterNetArgs
    Information about the accepter Net.
    AccepterOwnerId string
    NetPeeringId string
    The ID of the Net peering.
    OutscaleNetPeeringId string
    RequestId string
    SourceNetAccountId string
    SourceNetId string
    The ID of the Net you send the peering request from.
    SourceNets []NetPeeringSourceNetArgs
    Information about the source Net.
    States []NetPeeringStateTypeArgs
    Information about the state of the Net peering.
    Tags []NetPeeringTagArgs
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId String
    The ID of the Net you want to connect with.
    accepterNets List<NetPeeringAccepterNet>
    Information about the accepter Net.
    accepterOwnerId String
    netPeeringId String
    The ID of the Net peering.
    outscaleNetPeeringId String
    requestId String
    sourceNetAccountId String
    sourceNetId String
    The ID of the Net you send the peering request from.
    sourceNets List<NetPeeringSourceNet>
    Information about the source Net.
    states List<NetPeeringState>
    Information about the state of the Net peering.
    tags List<NetPeeringTag>
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId string
    The ID of the Net you want to connect with.
    accepterNets NetPeeringAccepterNet[]
    Information about the accepter Net.
    accepterOwnerId string
    netPeeringId string
    The ID of the Net peering.
    outscaleNetPeeringId string
    requestId string
    sourceNetAccountId string
    sourceNetId string
    The ID of the Net you send the peering request from.
    sourceNets NetPeeringSourceNet[]
    Information about the source Net.
    states NetPeeringState[]
    Information about the state of the Net peering.
    tags NetPeeringTag[]
    A tag to add to this resource. You can specify this argument several times.
    accepter_net_id str
    The ID of the Net you want to connect with.
    accepter_nets Sequence[NetPeeringAccepterNetArgs]
    Information about the accepter Net.
    accepter_owner_id str
    net_peering_id str
    The ID of the Net peering.
    outscale_net_peering_id str
    request_id str
    source_net_account_id str
    source_net_id str
    The ID of the Net you send the peering request from.
    source_nets Sequence[NetPeeringSourceNetArgs]
    Information about the source Net.
    states Sequence[NetPeeringStateArgs]
    Information about the state of the Net peering.
    tags Sequence[NetPeeringTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    accepterNetId String
    The ID of the Net you want to connect with.
    accepterNets List<Property Map>
    Information about the accepter Net.
    accepterOwnerId String
    netPeeringId String
    The ID of the Net peering.
    outscaleNetPeeringId String
    requestId String
    sourceNetAccountId String
    sourceNetId String
    The ID of the Net you send the peering request from.
    sourceNets List<Property Map>
    Information about the source Net.
    states List<Property Map>
    Information about the state of the Net peering.
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.

    Supporting Types

    NetPeeringAccepterNet, NetPeeringAccepterNetArgs

    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.
    accountId string
    The account ID of the owner of the source Net.
    ipRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId string
    The ID of the source Net.
    account_id str
    The account ID of the owner of the source Net.
    ip_range str
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    net_id str
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.

    NetPeeringSourceNet, NetPeeringSourceNetArgs

    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    AccountId string
    The account ID of the owner of the source Net.
    IpRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    NetId string
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.
    accountId string
    The account ID of the owner of the source Net.
    ipRange string
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId string
    The ID of the source Net.
    account_id str
    The account ID of the owner of the source Net.
    ip_range str
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    net_id str
    The ID of the source Net.
    accountId String
    The account ID of the owner of the source Net.
    ipRange String
    The IP range for the source Net, in CIDR notation (for example, 10.0.0.0/16).
    netId String
    The ID of the source Net.

    NetPeeringState, NetPeeringStateArgs

    Message string
    Additional information about the state of the Net peering.
    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    Message string
    Additional information about the state of the Net peering.
    Name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message String
    Additional information about the state of the Net peering.
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message string
    Additional information about the state of the Net peering.
    name string
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message str
    Additional information about the state of the Net peering.
    name str
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).
    message String
    Additional information about the state of the Net peering.
    name String
    The state of the Net peering (pending-acceptance | active | rejected | failed | expired | deleted).

    NetPeeringTag, NetPeeringTagArgs

    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 Net peering can be imported using its ID. For example:

    console

    $ pulumi import outscale:index/netPeering:NetPeering ImportedNetPeering pcx-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