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

outscale.Subnet

Explore with Pulumi AI

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

    Manages a Subnet.

    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 subnet

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const subnet01 = new outscale.Subnet("subnet01", {
        netId: outscale_net.net01.net_id,
        ipRange: "10.0.0.0/18",
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    subnet01 = outscale.Subnet("subnet01",
        net_id=outscale_net["net01"]["net_id"],
        ip_range="10.0.0.0/18")
    
    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.NewSubnet(ctx, "subnet01", &outscale.SubnetArgs{
    			NetId:   pulumi.Any(outscale_net.Net01.Net_id),
    			IpRange: pulumi.String("10.0.0.0/18"),
    		})
    		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 subnet01 = new Outscale.Subnet("subnet01", new()
        {
            NetId = outscale_net.Net01.Net_id,
            IpRange = "10.0.0.0/18",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.Subnet;
    import com.pulumi.outscale.SubnetArgs;
    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 subnet01 = new Subnet("subnet01", SubnetArgs.builder()
                .netId(outscale_net.net01().net_id())
                .ipRange("10.0.0.0/18")
                .build());
    
        }
    }
    
    resources:
      subnet01:
        type: outscale:Subnet
        properties:
          netId: ${outscale_net.net01.net_id}
          ipRange: 10.0.0.0/18
    

    Create Subnet Resource

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

    Constructor syntax

    new Subnet(name: string, args: SubnetArgs, opts?: CustomResourceOptions);
    @overload
    def Subnet(resource_name: str,
               args: SubnetArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Subnet(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               ip_range: Optional[str] = None,
               net_id: Optional[str] = None,
               map_public_ip_on_launch: Optional[bool] = None,
               outscale_subnet_id: Optional[str] = None,
               subregion_name: Optional[str] = None,
               tags: Optional[Sequence[SubnetTagArgs]] = None,
               timeouts: Optional[SubnetTimeoutsArgs] = None)
    func NewSubnet(ctx *Context, name string, args SubnetArgs, opts ...ResourceOption) (*Subnet, error)
    public Subnet(string name, SubnetArgs args, CustomResourceOptions? opts = null)
    public Subnet(String name, SubnetArgs args)
    public Subnet(String name, SubnetArgs args, CustomResourceOptions options)
    
    type: outscale:Subnet
    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 SubnetArgs
    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 SubnetArgs
    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 SubnetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SubnetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SubnetArgs
    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 subnetResource = new Outscale.Subnet("subnetResource", new()
    {
        IpRange = "string",
        NetId = "string",
        MapPublicIpOnLaunch = false,
        OutscaleSubnetId = "string",
        SubregionName = "string",
        Tags = new[]
        {
            new Outscale.Inputs.SubnetTagArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        Timeouts = new Outscale.Inputs.SubnetTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := outscale.NewSubnet(ctx, "subnetResource", &outscale.SubnetArgs{
    IpRange: pulumi.String("string"),
    NetId: pulumi.String("string"),
    MapPublicIpOnLaunch: pulumi.Bool(false),
    OutscaleSubnetId: pulumi.String("string"),
    SubregionName: pulumi.String("string"),
    Tags: .SubnetTagArray{
    &.SubnetTagArgs{
    Key: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Timeouts: &.SubnetTimeoutsArgs{
    Create: pulumi.String("string"),
    Delete: pulumi.String("string"),
    },
    })
    
    var subnetResource = new Subnet("subnetResource", SubnetArgs.builder()
        .ipRange("string")
        .netId("string")
        .mapPublicIpOnLaunch(false)
        .outscaleSubnetId("string")
        .subregionName("string")
        .tags(SubnetTagArgs.builder()
            .key("string")
            .value("string")
            .build())
        .timeouts(SubnetTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    subnet_resource = outscale.Subnet("subnetResource",
        ip_range="string",
        net_id="string",
        map_public_ip_on_launch=False,
        outscale_subnet_id="string",
        subregion_name="string",
        tags=[{
            "key": "string",
            "value": "string",
        }],
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const subnetResource = new outscale.Subnet("subnetResource", {
        ipRange: "string",
        netId: "string",
        mapPublicIpOnLaunch: false,
        outscaleSubnetId: "string",
        subregionName: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: outscale:Subnet
    properties:
        ipRange: string
        mapPublicIpOnLaunch: false
        netId: string
        outscaleSubnetId: string
        subregionName: string
        tags:
            - key: string
              value: string
        timeouts:
            create: string
            delete: string
    

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

    IpRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    NetId string
    The ID of the Net for which you want to create a Subnet.
    MapPublicIpOnLaunch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    OutscaleSubnetId string
    SubregionName string
    The name of the Subregion in which you want to create the Subnet.
    Tags List<SubnetTag>
    A tag to add to this resource. You can specify this argument several times.
    Timeouts SubnetTimeouts
    IpRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    NetId string
    The ID of the Net for which you want to create a Subnet.
    MapPublicIpOnLaunch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    OutscaleSubnetId string
    SubregionName string
    The name of the Subregion in which you want to create the Subnet.
    Tags []SubnetTagArgs
    A tag to add to this resource. You can specify this argument several times.
    Timeouts SubnetTimeoutsArgs
    ipRange String
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    netId String
    The ID of the Net for which you want to create a Subnet.
    mapPublicIpOnLaunch Boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    outscaleSubnetId String
    subregionName String
    The name of the Subregion in which you want to create the Subnet.
    tags List<SubnetTag>
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeouts
    ipRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    netId string
    The ID of the Net for which you want to create a Subnet.
    mapPublicIpOnLaunch boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    outscaleSubnetId string
    subregionName string
    The name of the Subregion in which you want to create the Subnet.
    tags SubnetTag[]
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeouts
    ip_range str
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    net_id str
    The ID of the Net for which you want to create a Subnet.
    map_public_ip_on_launch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    outscale_subnet_id str
    subregion_name str
    The name of the Subregion in which you want to create the Subnet.
    tags Sequence[SubnetTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeoutsArgs
    ipRange String
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    netId String
    The ID of the Net for which you want to create a Subnet.
    mapPublicIpOnLaunch Boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    outscaleSubnetId String
    subregionName String
    The name of the Subregion in which you want to create the Subnet.
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.
    timeouts Property Map

    Outputs

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

    AvailableIpsCount double
    The number of available IPs in the Subnets.
    Id string
    The provider-assigned unique ID for this managed resource.
    RequestId string
    State string
    The state of the Subnet (pending | available | deleted).
    SubnetId string
    The ID of the Subnet.
    AvailableIpsCount float64
    The number of available IPs in the Subnets.
    Id string
    The provider-assigned unique ID for this managed resource.
    RequestId string
    State string
    The state of the Subnet (pending | available | deleted).
    SubnetId string
    The ID of the Subnet.
    availableIpsCount Double
    The number of available IPs in the Subnets.
    id String
    The provider-assigned unique ID for this managed resource.
    requestId String
    state String
    The state of the Subnet (pending | available | deleted).
    subnetId String
    The ID of the Subnet.
    availableIpsCount number
    The number of available IPs in the Subnets.
    id string
    The provider-assigned unique ID for this managed resource.
    requestId string
    state string
    The state of the Subnet (pending | available | deleted).
    subnetId string
    The ID of the Subnet.
    available_ips_count float
    The number of available IPs in the Subnets.
    id str
    The provider-assigned unique ID for this managed resource.
    request_id str
    state str
    The state of the Subnet (pending | available | deleted).
    subnet_id str
    The ID of the Subnet.
    availableIpsCount Number
    The number of available IPs in the Subnets.
    id String
    The provider-assigned unique ID for this managed resource.
    requestId String
    state String
    The state of the Subnet (pending | available | deleted).
    subnetId String
    The ID of the Subnet.

    Look up Existing Subnet Resource

    Get an existing Subnet 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?: SubnetState, opts?: CustomResourceOptions): Subnet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            available_ips_count: Optional[float] = None,
            ip_range: Optional[str] = None,
            map_public_ip_on_launch: Optional[bool] = None,
            net_id: Optional[str] = None,
            outscale_subnet_id: Optional[str] = None,
            request_id: Optional[str] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            subregion_name: Optional[str] = None,
            tags: Optional[Sequence[SubnetTagArgs]] = None,
            timeouts: Optional[SubnetTimeoutsArgs] = None) -> Subnet
    func GetSubnet(ctx *Context, name string, id IDInput, state *SubnetState, opts ...ResourceOption) (*Subnet, error)
    public static Subnet Get(string name, Input<string> id, SubnetState? state, CustomResourceOptions? opts = null)
    public static Subnet get(String name, Output<String> id, SubnetState state, CustomResourceOptions options)
    resources:  _:    type: outscale:Subnet    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:
    AvailableIpsCount double
    The number of available IPs in the Subnets.
    IpRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    MapPublicIpOnLaunch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    NetId string
    The ID of the Net for which you want to create a Subnet.
    OutscaleSubnetId string
    RequestId string
    State string
    The state of the Subnet (pending | available | deleted).
    SubnetId string
    The ID of the Subnet.
    SubregionName string
    The name of the Subregion in which you want to create the Subnet.
    Tags List<SubnetTag>
    A tag to add to this resource. You can specify this argument several times.
    Timeouts SubnetTimeouts
    AvailableIpsCount float64
    The number of available IPs in the Subnets.
    IpRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    MapPublicIpOnLaunch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    NetId string
    The ID of the Net for which you want to create a Subnet.
    OutscaleSubnetId string
    RequestId string
    State string
    The state of the Subnet (pending | available | deleted).
    SubnetId string
    The ID of the Subnet.
    SubregionName string
    The name of the Subregion in which you want to create the Subnet.
    Tags []SubnetTagArgs
    A tag to add to this resource. You can specify this argument several times.
    Timeouts SubnetTimeoutsArgs
    availableIpsCount Double
    The number of available IPs in the Subnets.
    ipRange String
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    mapPublicIpOnLaunch Boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    netId String
    The ID of the Net for which you want to create a Subnet.
    outscaleSubnetId String
    requestId String
    state String
    The state of the Subnet (pending | available | deleted).
    subnetId String
    The ID of the Subnet.
    subregionName String
    The name of the Subregion in which you want to create the Subnet.
    tags List<SubnetTag>
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeouts
    availableIpsCount number
    The number of available IPs in the Subnets.
    ipRange string
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    mapPublicIpOnLaunch boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    netId string
    The ID of the Net for which you want to create a Subnet.
    outscaleSubnetId string
    requestId string
    state string
    The state of the Subnet (pending | available | deleted).
    subnetId string
    The ID of the Subnet.
    subregionName string
    The name of the Subregion in which you want to create the Subnet.
    tags SubnetTag[]
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeouts
    available_ips_count float
    The number of available IPs in the Subnets.
    ip_range str
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    map_public_ip_on_launch bool
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    net_id str
    The ID of the Net for which you want to create a Subnet.
    outscale_subnet_id str
    request_id str
    state str
    The state of the Subnet (pending | available | deleted).
    subnet_id str
    The ID of the Subnet.
    subregion_name str
    The name of the Subregion in which you want to create the Subnet.
    tags Sequence[SubnetTagArgs]
    A tag to add to this resource. You can specify this argument several times.
    timeouts SubnetTimeoutsArgs
    availableIpsCount Number
    The number of available IPs in the Subnets.
    ipRange String
    The IP range in the Subnet, in CIDR notation (for example, 10.0.0.0/16). The IP range of the Subnet can be either the same as the Net one if you create only a single Subnet in this Net, or a subset of the Net one. In case of several Subnets in a Net, their IP ranges must not overlap. The smallest Subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
    mapPublicIpOnLaunch Boolean
    If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
    netId String
    The ID of the Net for which you want to create a Subnet.
    outscaleSubnetId String
    requestId String
    state String
    The state of the Subnet (pending | available | deleted).
    subnetId String
    The ID of the Subnet.
    subregionName String
    The name of the Subregion in which you want to create the Subnet.
    tags List<Property Map>
    A tag to add to this resource. You can specify this argument several times.
    timeouts Property Map

    Supporting Types

    SubnetTag, SubnetTagArgs

    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.

    SubnetTimeouts, SubnetTimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    Import

    A subnet can be imported using its ID. For example:

    console

    $ pulumi import outscale:index/subnet:Subnet ImportedSubnet subnet-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