outscale.Subnet
Explore with Pulumi AI
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:
- Ip
Range 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. - Net
Id string - The ID of the Net for which you want to create a Subnet.
- Map
Public boolIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- Outscale
Subnet stringId - Subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- List<Subnet
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Subnet
Timeouts
- Ip
Range 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. - Net
Id string - The ID of the Net for which you want to create a Subnet.
- Map
Public boolIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- Outscale
Subnet stringId - Subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- []Subnet
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Subnet
Timeouts Args
- ip
Range 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. - net
Id String - The ID of the Net for which you want to create a Subnet.
- map
Public BooleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- outscale
Subnet StringId - subregion
Name String - The name of the Subregion in which you want to create the Subnet.
- List<Subnet
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts
- ip
Range 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. - net
Id string - The ID of the Net for which you want to create a Subnet.
- map
Public booleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- outscale
Subnet stringId - subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- Subnet
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts
- 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_ boolip_ on_ launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- outscale_
subnet_ strid - subregion_
name str - The name of the Subregion in which you want to create the Subnet.
- Sequence[Subnet
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts Args
- ip
Range 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. - net
Id String - The ID of the Net for which you want to create a Subnet.
- map
Public BooleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- outscale
Subnet StringId - subregion
Name String - The name of the Subregion in which you want to create the Subnet.
- 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:
- Available
Ips doubleCount - The number of available IPs in the Subnets.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - State string
- The state of the Subnet (
pending
|available
|deleted
). - Subnet
Id string - The ID of the Subnet.
- Available
Ips float64Count - The number of available IPs in the Subnets.
- Id string
- The provider-assigned unique ID for this managed resource.
- Request
Id string - State string
- The state of the Subnet (
pending
|available
|deleted
). - Subnet
Id string - The ID of the Subnet.
- available
Ips DoubleCount - The number of available IPs in the Subnets.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - state String
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id String - The ID of the Subnet.
- available
Ips numberCount - The number of available IPs in the Subnets.
- id string
- The provider-assigned unique ID for this managed resource.
- request
Id string - state string
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id string - The ID of the Subnet.
- available_
ips_ floatcount - 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.
- available
Ips NumberCount - The number of available IPs in the Subnets.
- id String
- The provider-assigned unique ID for this managed resource.
- request
Id String - state String
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id 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.
- Available
Ips doubleCount - The number of available IPs in the Subnets.
- Ip
Range 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. - Map
Public boolIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- Net
Id string - The ID of the Net for which you want to create a Subnet.
- Outscale
Subnet stringId - Request
Id string - State string
- The state of the Subnet (
pending
|available
|deleted
). - Subnet
Id string - The ID of the Subnet.
- Subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- List<Subnet
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Subnet
Timeouts
- Available
Ips float64Count - The number of available IPs in the Subnets.
- Ip
Range 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. - Map
Public boolIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- Net
Id string - The ID of the Net for which you want to create a Subnet.
- Outscale
Subnet stringId - Request
Id string - State string
- The state of the Subnet (
pending
|available
|deleted
). - Subnet
Id string - The ID of the Subnet.
- Subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- []Subnet
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Subnet
Timeouts Args
- available
Ips DoubleCount - The number of available IPs in the Subnets.
- ip
Range 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. - map
Public BooleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- net
Id String - The ID of the Net for which you want to create a Subnet.
- outscale
Subnet StringId - request
Id String - state String
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id String - The ID of the Subnet.
- subregion
Name String - The name of the Subregion in which you want to create the Subnet.
- List<Subnet
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts
- available
Ips numberCount - The number of available IPs in the Subnets.
- ip
Range 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. - map
Public booleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- net
Id string - The ID of the Net for which you want to create a Subnet.
- outscale
Subnet stringId - request
Id string - state string
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id string - The ID of the Subnet.
- subregion
Name string - The name of the Subregion in which you want to create the Subnet.
- Subnet
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts
- available_
ips_ floatcount - 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_ boolip_ on_ launch - 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_ strid - 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.
- Sequence[Subnet
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Subnet
Timeouts Args
- available
Ips NumberCount - The number of available IPs in the Subnets.
- ip
Range 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. - map
Public BooleanIp On Launch - If true, a public IP is assigned to the network interface cards (NICs) created in the specified Subnet.
- net
Id String - The ID of the Net for which you want to create a Subnet.
- outscale
Subnet StringId - request
Id String - state String
- The state of the Subnet (
pending
|available
|deleted
). - subnet
Id String - The ID of the Subnet.
- subregion
Name String - The name of the Subregion in which you want to create the Subnet.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
Supporting Types
SubnetTag, SubnetTagArgs
SubnetTimeouts, SubnetTimeoutsArgs
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.