1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. eflo
  5. Subnet
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.eflo.Subnet

Explore with Pulumi AI

Provides a Eflo Subnet resource.

For information about Eflo Subnet and how to use it, see What is Subnet.

NOTE: Available since v1.204.0.

Example Usage

Basic Usage

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

const config = new pulumi.Config();
const name = config.get("name") || "tf-example";
const _default = alicloud.getZones({});
const defaultGetResourceGroups = alicloud.resourcemanager.getResourceGroups({});
const defaultVpd = new alicloud.eflo.Vpd("default", {
    cidr: "10.0.0.0/8",
    vpdName: name,
    resourceGroupId: defaultGetResourceGroups.then(defaultGetResourceGroups => defaultGetResourceGroups.groups?.[0]?.id),
});
const defaultSubnet = new alicloud.eflo.Subnet("default", {
    subnetName: name,
    zoneId: _default.then(_default => _default.zones?.[0]?.id),
    cidr: "10.0.0.0/16",
    vpdId: defaultVpd.id,
});
Copy
import pulumi
import pulumi_alicloud as alicloud

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tf-example"
default = alicloud.get_zones()
default_get_resource_groups = alicloud.resourcemanager.get_resource_groups()
default_vpd = alicloud.eflo.Vpd("default",
    cidr="10.0.0.0/8",
    vpd_name=name,
    resource_group_id=default_get_resource_groups.groups[0].id)
default_subnet = alicloud.eflo.Subnet("default",
    subnet_name=name,
    zone_id=default.zones[0].id,
    cidr="10.0.0.0/16",
    vpd_id=default_vpd.id)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eflo"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "tf-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{}, nil)
		if err != nil {
			return err
		}
		defaultGetResourceGroups, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{}, nil)
		if err != nil {
			return err
		}
		defaultVpd, err := eflo.NewVpd(ctx, "default", &eflo.VpdArgs{
			Cidr:            pulumi.String("10.0.0.0/8"),
			VpdName:         pulumi.String(name),
			ResourceGroupId: pulumi.String(defaultGetResourceGroups.Groups[0].Id),
		})
		if err != nil {
			return err
		}
		_, err = eflo.NewSubnet(ctx, "default", &eflo.SubnetArgs{
			SubnetName: pulumi.String(name),
			ZoneId:     pulumi.String(_default.Zones[0].Id),
			Cidr:       pulumi.String("10.0.0.0/16"),
			VpdId:      defaultVpd.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tf-example";
    var @default = AliCloud.GetZones.Invoke();

    var defaultGetResourceGroups = AliCloud.ResourceManager.GetResourceGroups.Invoke();

    var defaultVpd = new AliCloud.Eflo.Vpd("default", new()
    {
        Cidr = "10.0.0.0/8",
        VpdName = name,
        ResourceGroupId = defaultGetResourceGroups.Apply(getResourceGroupsResult => getResourceGroupsResult.Groups[0]?.Id),
    });

    var defaultSubnet = new AliCloud.Eflo.Subnet("default", new()
    {
        SubnetName = name,
        ZoneId = @default.Apply(@default => @default.Apply(getZonesResult => getZonesResult.Zones[0]?.Id)),
        Cidr = "10.0.0.0/16",
        VpdId = defaultVpd.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.eflo.Vpd;
import com.pulumi.alicloud.eflo.VpdArgs;
import com.pulumi.alicloud.eflo.Subnet;
import com.pulumi.alicloud.eflo.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) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tf-example");
        final var default = AlicloudFunctions.getZones();

        final var defaultGetResourceGroups = ResourcemanagerFunctions.getResourceGroups();

        var defaultVpd = new Vpd("defaultVpd", VpdArgs.builder()
            .cidr("10.0.0.0/8")
            .vpdName(name)
            .resourceGroupId(defaultGetResourceGroups.applyValue(getResourceGroupsResult -> getResourceGroupsResult.groups()[0].id()))
            .build());

        var defaultSubnet = new Subnet("defaultSubnet", SubnetArgs.builder()
            .subnetName(name)
            .zoneId(default_.zones()[0].id())
            .cidr("10.0.0.0/16")
            .vpdId(defaultVpd.id())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: tf-example
resources:
  defaultVpd:
    type: alicloud:eflo:Vpd
    name: default
    properties:
      cidr: 10.0.0.0/8
      vpdName: ${name}
      resourceGroupId: ${defaultGetResourceGroups.groups[0].id}
  defaultSubnet:
    type: alicloud:eflo:Subnet
    name: default
    properties:
      subnetName: ${name}
      zoneId: ${default.zones[0].id}
      cidr: 10.0.0.0/16
      vpdId: ${defaultVpd.id}
variables:
  default:
    fn::invoke:
      function: alicloud:getZones
      arguments: {}
  defaultGetResourceGroups:
    fn::invoke:
      function: alicloud:resourcemanager:getResourceGroups
      arguments: {}
Copy

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,
           cidr: Optional[str] = None,
           subnet_name: Optional[str] = None,
           vpd_id: Optional[str] = None,
           zone_id: Optional[str] = None,
           type: Optional[str] = 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: alicloud:eflo:Subnet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SubnetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. SubnetArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SubnetArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 AliCloud.Eflo.Subnet("subnetResource", new()
{
    Cidr = "string",
    SubnetName = "string",
    VpdId = "string",
    ZoneId = "string",
    Type = "string",
});
Copy
example, err := eflo.NewSubnet(ctx, "subnetResource", &eflo.SubnetArgs{
	Cidr:       pulumi.String("string"),
	SubnetName: pulumi.String("string"),
	VpdId:      pulumi.String("string"),
	ZoneId:     pulumi.String("string"),
	Type:       pulumi.String("string"),
})
Copy
var subnetResource = new Subnet("subnetResource", SubnetArgs.builder()
    .cidr("string")
    .subnetName("string")
    .vpdId("string")
    .zoneId("string")
    .type("string")
    .build());
Copy
subnet_resource = alicloud.eflo.Subnet("subnetResource",
    cidr="string",
    subnet_name="string",
    vpd_id="string",
    zone_id="string",
    type="string")
Copy
const subnetResource = new alicloud.eflo.Subnet("subnetResource", {
    cidr: "string",
    subnetName: "string",
    vpdId: "string",
    zoneId: "string",
    type: "string",
});
Copy
type: alicloud:eflo:Subnet
properties:
    cidr: string
    subnetName: string
    type: string
    vpdId: string
    zoneId: string
Copy

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:

Cidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR network segment.
SubnetName This property is required. string
The Subnet name.
VpdId
This property is required.
Changes to this property will trigger replacement.
string
The Eflo VPD ID.
ZoneId
This property is required.
Changes to this property will trigger replacement.
string
The zone ID of the resource.
Type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
Cidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR network segment.
SubnetName This property is required. string
The Subnet name.
VpdId
This property is required.
Changes to this property will trigger replacement.
string
The Eflo VPD ID.
ZoneId
This property is required.
Changes to this property will trigger replacement.
string
The zone ID of the resource.
Type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
cidr
This property is required.
Changes to this property will trigger replacement.
String
CIDR network segment.
subnetName This property is required. String
The Subnet name.
vpdId
This property is required.
Changes to this property will trigger replacement.
String
The Eflo VPD ID.
zoneId
This property is required.
Changes to this property will trigger replacement.
String
The zone ID of the resource.
type Changes to this property will trigger replacement. String
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
cidr
This property is required.
Changes to this property will trigger replacement.
string
CIDR network segment.
subnetName This property is required. string
The Subnet name.
vpdId
This property is required.
Changes to this property will trigger replacement.
string
The Eflo VPD ID.
zoneId
This property is required.
Changes to this property will trigger replacement.
string
The zone ID of the resource.
type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
cidr
This property is required.
Changes to this property will trigger replacement.
str
CIDR network segment.
subnet_name This property is required. str
The Subnet name.
vpd_id
This property is required.
Changes to this property will trigger replacement.
str
The Eflo VPD ID.
zone_id
This property is required.
Changes to this property will trigger replacement.
str
The zone ID of the resource.
type Changes to this property will trigger replacement. str
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
cidr
This property is required.
Changes to this property will trigger replacement.
String
CIDR network segment.
subnetName This property is required. String
The Subnet name.
vpdId
This property is required.
Changes to this property will trigger replacement.
String
The Eflo VPD ID.
zoneId
This property is required.
Changes to this property will trigger replacement.
String
The zone ID of the resource.
type Changes to this property will trigger replacement. String
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type

Outputs

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

CreateTime string
The creation time of the resource.
GmtModified string
Modification time.
Id string
The provider-assigned unique ID for this managed resource.
Message string
Error message.
ResourceGroupId string
Resource Group ID.
Status string
The status of the resource.
SubnetId string
The id of the subnet.
CreateTime string
The creation time of the resource.
GmtModified string
Modification time.
Id string
The provider-assigned unique ID for this managed resource.
Message string
Error message.
ResourceGroupId string
Resource Group ID.
Status string
The status of the resource.
SubnetId string
The id of the subnet.
createTime String
The creation time of the resource.
gmtModified String
Modification time.
id String
The provider-assigned unique ID for this managed resource.
message String
Error message.
resourceGroupId String
Resource Group ID.
status String
The status of the resource.
subnetId String
The id of the subnet.
createTime string
The creation time of the resource.
gmtModified string
Modification time.
id string
The provider-assigned unique ID for this managed resource.
message string
Error message.
resourceGroupId string
Resource Group ID.
status string
The status of the resource.
subnetId string
The id of the subnet.
create_time str
The creation time of the resource.
gmt_modified str
Modification time.
id str
The provider-assigned unique ID for this managed resource.
message str
Error message.
resource_group_id str
Resource Group ID.
status str
The status of the resource.
subnet_id str
The id of the subnet.
createTime String
The creation time of the resource.
gmtModified String
Modification time.
id String
The provider-assigned unique ID for this managed resource.
message String
Error message.
resourceGroupId String
Resource Group ID.
status String
The status of the resource.
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,
        cidr: Optional[str] = None,
        create_time: Optional[str] = None,
        gmt_modified: Optional[str] = None,
        message: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        status: Optional[str] = None,
        subnet_id: Optional[str] = None,
        subnet_name: Optional[str] = None,
        type: Optional[str] = None,
        vpd_id: Optional[str] = None,
        zone_id: Optional[str] = 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: alicloud:eflo:Subnet    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Cidr Changes to this property will trigger replacement. string
CIDR network segment.
CreateTime string
The creation time of the resource.
GmtModified string
Modification time.
Message string
Error message.
ResourceGroupId string
Resource Group ID.
Status string
The status of the resource.
SubnetId string
The id of the subnet.
SubnetName string
The Subnet name.
Type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
VpdId Changes to this property will trigger replacement. string
The Eflo VPD ID.
ZoneId Changes to this property will trigger replacement. string
The zone ID of the resource.
Cidr Changes to this property will trigger replacement. string
CIDR network segment.
CreateTime string
The creation time of the resource.
GmtModified string
Modification time.
Message string
Error message.
ResourceGroupId string
Resource Group ID.
Status string
The status of the resource.
SubnetId string
The id of the subnet.
SubnetName string
The Subnet name.
Type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
VpdId Changes to this property will trigger replacement. string
The Eflo VPD ID.
ZoneId Changes to this property will trigger replacement. string
The zone ID of the resource.
cidr Changes to this property will trigger replacement. String
CIDR network segment.
createTime String
The creation time of the resource.
gmtModified String
Modification time.
message String
Error message.
resourceGroupId String
Resource Group ID.
status String
The status of the resource.
subnetId String
The id of the subnet.
subnetName String
The Subnet name.
type Changes to this property will trigger replacement. String
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
vpdId Changes to this property will trigger replacement. String
The Eflo VPD ID.
zoneId Changes to this property will trigger replacement. String
The zone ID of the resource.
cidr Changes to this property will trigger replacement. string
CIDR network segment.
createTime string
The creation time of the resource.
gmtModified string
Modification time.
message string
Error message.
resourceGroupId string
Resource Group ID.
status string
The status of the resource.
subnetId string
The id of the subnet.
subnetName string
The Subnet name.
type Changes to this property will trigger replacement. string
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
vpdId Changes to this property will trigger replacement. string
The Eflo VPD ID.
zoneId Changes to this property will trigger replacement. string
The zone ID of the resource.
cidr Changes to this property will trigger replacement. str
CIDR network segment.
create_time str
The creation time of the resource.
gmt_modified str
Modification time.
message str
Error message.
resource_group_id str
Resource Group ID.
status str
The status of the resource.
subnet_id str
The id of the subnet.
subnet_name str
The Subnet name.
type Changes to this property will trigger replacement. str
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
vpd_id Changes to this property will trigger replacement. str
The Eflo VPD ID.
zone_id Changes to this property will trigger replacement. str
The zone ID of the resource.
cidr Changes to this property will trigger replacement. String
CIDR network segment.
createTime String
The creation time of the resource.
gmtModified String
Modification time.
message String
Error message.
resourceGroupId String
Resource Group ID.
status String
The status of the resource.
subnetId String
The id of the subnet.
subnetName String
The Subnet name.
type Changes to this property will trigger replacement. String
Eflo subnet usage type. optional value:

  • General type is not filled in
  • OOB:OOB type
  • LB: LB type
vpdId Changes to this property will trigger replacement. String
The Eflo VPD ID.
zoneId Changes to this property will trigger replacement. String
The zone ID of the resource.

Import

Eflo Subnet can be imported using the id, e.g.

$ pulumi import alicloud:eflo/subnet:Subnet example <vpd_id>:<subnet_id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.