published on Tuesday, Sep 15, 2026 by Pulumi
published on Tuesday, Sep 15, 2026 by Pulumi
Provides information about a list of Linode VPC subnets that match a set of filters. For more information, see the Linode APIv4 docs.
Example Usage
The following example shows how one might use this data source to list VPC subnets.
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const filtered_subnets = linode.getVpcSubnets({
vpcId: 123,
filters: [{
name: "label",
values: ["test"],
}],
});
export const vpcSubnets = filtered_subnets.then(filtered_subnets => filtered_subnets.vpcSubnets);
import pulumi
import pulumi_linode as linode
filtered_subnets = linode.get_vpc_subnets(vpc_id=123,
filters=[{
"name": "label",
"values": ["test"],
}])
pulumi.export("vpcSubnets", filtered_subnets.vpc_subnets)
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v6/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
filtered_subnets, err := linode.GetVpcSubnets(ctx, &linode.GetVpcSubnetsArgs{
VpcId: 123,
Filters: []linode.GetVpcSubnetsFilter{
{
Name: "label",
Values: []string{
"test",
},
},
},
}, nil)
if err != nil {
return err
}
ctx.Export("vpcSubnets", filtered_subnets.VpcSubnets)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var filtered_subnets = Linode.GetVpcSubnets.Invoke(new()
{
VpcId = 123,
Filters = new[]
{
new Linode.Inputs.GetVpcSubnetsFilterInputArgs
{
Name = "label",
Values = new[]
{
"test",
},
},
},
});
return new Dictionary<string, object?>
{
["vpcSubnets"] = filtered_subnets.Apply(filtered_subnets => filtered_subnets.Apply(getVpcSubnetsResult => getVpcSubnetsResult.VpcSubnets)),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.linode.LinodeFunctions;
import com.pulumi.linode.inputs.GetVpcSubnetsArgs;
import com.pulumi.linode.inputs.GetVpcSubnetsFilterArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 filtered-subnets = LinodeFunctions.getVpcSubnets(GetVpcSubnetsArgs.builder()
.vpcId(123)
.filters(GetVpcSubnetsFilterArgs.builder()
.name("label")
.values("test")
.build())
.build());
ctx.export("vpcSubnets", filtered_subnets.vpcSubnets());
}
}
variables:
filtered-subnets:
fn::invoke:
function: linode:getVpcSubnets
arguments:
vpcId: 123
filters:
- name: label
values:
- test
outputs:
vpcSubnets: ${["filtered-subnets"].vpcSubnets}
pulumi {
required_providers {
linode = {
source = "pulumi/linode"
}
}
}
data "linode_getvpcsubnets" "filtered-subnets" {
vpc_id = 123
filters {
name = "label"
values = ["test"]
}
}
output "vpcSubnets" {
value = data.linode_getvpcsubnets.filtered-subnets.vpc_subnets
}
IPv6
Limited Availability IPv6 VPCs may not currently be available to all users.
The following attributes are exported under each entry of the ipv6 field:
range- An IPv6 range allocated to this subnet in CIDR format.
Filterable Fields
idlabelipv4
Using getVpcSubnets
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getVpcSubnets(args: GetVpcSubnetsArgs, opts?: InvokeOptions): Promise<GetVpcSubnetsResult>
function getVpcSubnetsOutput(args: GetVpcSubnetsOutputArgs, opts?: InvokeOutputOptions): Output<GetVpcSubnetsResult>def get_vpc_subnets(filters: Optional[Sequence[GetVpcSubnetsFilter]] = None,
vpc_id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetVpcSubnetsResult
def get_vpc_subnets_output(filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetVpcSubnetsFilterArgs]]]] = None,
vpc_id: pulumi.Input[Optional[int]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetVpcSubnetsResult]func GetVpcSubnets(ctx *Context, args *GetVpcSubnetsArgs, opts ...InvokeOption) (*GetVpcSubnetsResult, error)
func GetVpcSubnetsOutput(ctx *Context, args *GetVpcSubnetsOutputArgs, opts ...InvokeOption) GetVpcSubnetsResultOutput> Note: This function is named GetVpcSubnets in the Go SDK.
public static class GetVpcSubnets
{
public static Task<GetVpcSubnetsResult> InvokeAsync(GetVpcSubnetsArgs args, InvokeOptions? opts = null)
public static Output<GetVpcSubnetsResult> Invoke(GetVpcSubnetsInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetVpcSubnetsResult> Invoke(GetVpcSubnetsInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetVpcSubnetsResult> getVpcSubnets(GetVpcSubnetsArgs args, InvokeOptions options)
public static Output<GetVpcSubnetsResult> getVpcSubnets(GetVpcSubnetsArgs args, InvokeOptions options)
public static Output<GetVpcSubnetsResult> getVpcSubnets(GetVpcSubnetsArgs args, InvokeOutputOptions options)
fn::invoke:
function: linode:index/getVpcSubnets:getVpcSubnets
arguments:
# arguments dictionarydata "linode_get_vpc_subnets" "name" {
# arguments
}The following arguments are supported:
- Vpc
Id int - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- Filters
List<Get
Vpc Subnets Filter>
- Vpc
Id int - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- Filters
[]Get
Vpc Subnets Filter
- vpc_
id number - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- filters list(object)
- vpc
Id Integer - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- filters
List<Get
Vpc Subnets Filter>
- vpc
Id number - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- filters
Get
Vpc Subnets Filter[]
- vpc_
id int - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- filters
Sequence[Get
Vpc Subnets Filter]
- vpc
Id Number - The id of the parent VPC for the list of VPCs.
filter- (Optional, Block Set) A set of filters used to select Linode VPC subnets that meet certain requirements.
- filters List<Property Map>
getVpcSubnets Result
The following output properties are available:
- Id string
- ID of a NodeBalancer assigned to the VPC Subnet.
- Vpc
Id int - Vpc
Subnets List<GetVpc Subnets Vpc Subnet> - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - Filters
List<Get
Vpc Subnets Filter>
- Id string
- ID of a NodeBalancer assigned to the VPC Subnet.
- Vpc
Id int - Vpc
Subnets []GetVpc Subnets Vpc Subnet - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - Filters
[]Get
Vpc Subnets Filter
- id string
- ID of a NodeBalancer assigned to the VPC Subnet.
- vpc_
id number - vpc_
subnets list(object) - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - filters list(object)
- id String
- ID of a NodeBalancer assigned to the VPC Subnet.
- vpc
Id Integer - vpc
Subnets List<GetVpc Subnets Vpc Subnet> - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - filters
List<Get
Vpc Subnets Filter>
- id string
- ID of a NodeBalancer assigned to the VPC Subnet.
- vpc
Id number - vpc
Subnets GetVpc Subnets Vpc Subnet[] - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - filters
Get
Vpc Subnets Filter[]
- id str
- ID of a NodeBalancer assigned to the VPC Subnet.
- vpc_
id int - vpc_
subnets Sequence[GetVpc Subnets Vpc Subnet] - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - filters
Sequence[Get
Vpc Subnets Filter]
- id String
- ID of a NodeBalancer assigned to the VPC Subnet.
- vpc
Id Number - vpc
Subnets List<Property Map> - (Nested Attribute List) The returned list of subnets under a VPC. Referenced by index (e.g.
vpc_subnets[0].id). - filters List<Property Map>
Supporting Types
GetVpcSubnetsFilter
- Name string
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- Values List<string>
- A list of values for the filter to allow. These values should all be in string form.
- Match
By string - The method to match the field by. (
exact,regex,substring; defaultexact)
- Name string
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- Values []string
- A list of values for the filter to allow. These values should all be in string form.
- Match
By string - The method to match the field by. (
exact,regex,substring; defaultexact)
- name string
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- values list(string)
- A list of values for the filter to allow. These values should all be in string form.
- match_
by string - The method to match the field by. (
exact,regex,substring; defaultexact)
- name String
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- values List<String>
- A list of values for the filter to allow. These values should all be in string form.
- match
By String - The method to match the field by. (
exact,regex,substring; defaultexact)
- name string
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- values string[]
- A list of values for the filter to allow. These values should all be in string form.
- match
By string - The method to match the field by. (
exact,regex,substring; defaultexact)
- name str
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- values Sequence[str]
- A list of values for the filter to allow. These values should all be in string form.
- match_
by str - The method to match the field by. (
exact,regex,substring; defaultexact)
- name String
- The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
- values List<String>
- A list of values for the filter to allow. These values should all be in string form.
- match
By String - The method to match the field by. (
exact,regex,substring; defaultexact)
GetVpcSubnetsVpcSubnet
- Created string
- The date and time when the VPC Subnet was created.
- Databases
List<Get
Vpc Subnets Vpc Subnet Database> - (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4 string
- The IPv4 range of this subnet in CIDR format.
- Ipv6s
List<Get
Vpc Subnets Vpc Subnet Ipv6> - The IPv6 ranges of this subnet.
- Label string
- The label of the VPC subnet.
- Linodes
List<Get
Vpc Subnets Vpc Subnet Linode> - (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - Nodebalancers
List<Get
Vpc Subnets Vpc Subnet Nodebalancer> - (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - Updated string
- The date and time when the VPC Subnet was last updated.
- Created string
- The date and time when the VPC Subnet was created.
- Databases
[]Get
Vpc Subnets Vpc Subnet Database - (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4 string
- The IPv4 range of this subnet in CIDR format.
- Ipv6s
[]Get
Vpc Subnets Vpc Subnet Ipv6 - The IPv6 ranges of this subnet.
- Label string
- The label of the VPC subnet.
- Linodes
[]Get
Vpc Subnets Vpc Subnet Linode - (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - Nodebalancers
[]Get
Vpc Subnets Vpc Subnet Nodebalancer - (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - Updated string
- The date and time when the VPC Subnet was last updated.
- created string
- The date and time when the VPC Subnet was created.
- databases list(object)
- (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4 string
- The IPv4 range of this subnet in CIDR format.
- ipv6s list(object)
- The IPv6 ranges of this subnet.
- label string
- The label of the VPC subnet.
- linodes list(object)
- (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - nodebalancers list(object)
- (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - updated string
- The date and time when the VPC Subnet was last updated.
- created String
- The date and time when the VPC Subnet was created.
- databases
List<Get
Vpc Subnets Vpc Subnet Database> - (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - id Integer
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4 String
- The IPv4 range of this subnet in CIDR format.
- ipv6s
List<Get
Vpc Subnets Vpc Subnet Ipv6> - The IPv6 ranges of this subnet.
- label String
- The label of the VPC subnet.
- linodes
List<Get
Vpc Subnets Vpc Subnet Linode> - (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - nodebalancers
List<Get
Vpc Subnets Vpc Subnet Nodebalancer> - (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - updated String
- The date and time when the VPC Subnet was last updated.
- created string
- The date and time when the VPC Subnet was created.
- databases
Get
Vpc Subnets Vpc Subnet Database[] - (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4 string
- The IPv4 range of this subnet in CIDR format.
- ipv6s
Get
Vpc Subnets Vpc Subnet Ipv6[] - The IPv6 ranges of this subnet.
- label string
- The label of the VPC subnet.
- linodes
Get
Vpc Subnets Vpc Subnet Linode[] - (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - nodebalancers
Get
Vpc Subnets Vpc Subnet Nodebalancer[] - (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - updated string
- The date and time when the VPC Subnet was last updated.
- created str
- The date and time when the VPC Subnet was created.
- databases
Sequence[Get
Vpc Subnets Vpc Subnet Database] - (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4 str
- The IPv4 range of this subnet in CIDR format.
- ipv6s
Sequence[Get
Vpc Subnets Vpc Subnet Ipv6] - The IPv6 ranges of this subnet.
- label str
- The label of the VPC subnet.
- linodes
Sequence[Get
Vpc Subnets Vpc Subnet Linode] - (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - nodebalancers
Sequence[Get
Vpc Subnets Vpc Subnet Nodebalancer] - (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - updated str
- The date and time when the VPC Subnet was last updated.
- created String
- The date and time when the VPC Subnet was created.
- databases List<Property Map>
- (Read-Only Object List) A list of Managed databases assigned to the VPC Subnet. Referenced with an index (e.g.
databases.0.id). - id Number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4 String
- The IPv4 range of this subnet in CIDR format.
- ipv6s List<Property Map>
- The IPv6 ranges of this subnet.
- label String
- The label of the VPC subnet.
- linodes List<Property Map>
- (Read-Only Object List) A list of Linodes added to this subnet. Referenced with an index (e.g.
linodes.0.id). - nodebalancers List<Property Map>
- (Read-Only Object List) A list of NodeBalancers assigned to the VPC Subnet. Referenced with an index (e.g.
nodebalancers.0.id). - updated String
- The date and time when the VPC Subnet was last updated.
GetVpcSubnetsVpcSubnetDatabase
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- Ipv6Ranges
List<Get
Vpc Subnets Vpc Subnet Database Ipv6Range> - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- Ipv6Ranges
[]Get
Vpc Subnets Vpc Subnet Database Ipv6Range - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4_
range string - IPv4 range assigned to the NodeBalancer.
- ipv6_
ranges list(object) - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id Integer
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range String
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges
List<Get
Vpc Subnets Vpc Subnet Database Ipv6Range> - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges
Get
Vpc Subnets Vpc Subnet Database Ipv6Range[] - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4_
range str - IPv4 range assigned to the NodeBalancer.
- ipv6_
ranges Sequence[GetVpc Subnets Vpc Subnet Database Ipv6Range] - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id Number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range String
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges List<Property Map>
- (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
GetVpcSubnetsVpcSubnetDatabaseIpv6Range
- Range string
- An IPv6 address range in CIDR notation.
- Range string
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range str
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
GetVpcSubnetsVpcSubnetIpv6
- Range string
- An IPv6 address range in CIDR notation.
- Range string
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range str
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
GetVpcSubnetsVpcSubnetLinode
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Interfaces
List<Get
Vpc Subnets Vpc Subnet Linode Interface> - (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Interfaces
[]Get
Vpc Subnets Vpc Subnet Linode Interface - (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- interfaces list(object)
- (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- id Integer
- ID of a NodeBalancer assigned to the VPC Subnet.
- interfaces
List<Get
Vpc Subnets Vpc Subnet Linode Interface> - (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- interfaces
Get
Vpc Subnets Vpc Subnet Linode Interface[] - (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- interfaces
Sequence[Get
Vpc Subnets Vpc Subnet Linode Interface] - (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
- id Number
- ID of a NodeBalancer assigned to the VPC Subnet.
- interfaces List<Property Map>
- (Read-Only Object List) A list of networking interfaces objects. Referenced with an index (e.g.
interfaces.0.id).
GetVpcSubnetsVpcSubnetLinodeInterface
GetVpcSubnetsVpcSubnetNodebalancer
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- Ipv6Ranges
List<Get
Vpc Subnets Vpc Subnet Nodebalancer Ipv6Range> - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- Id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- Ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- Ipv6Ranges
[]Get
Vpc Subnets Vpc Subnet Nodebalancer Ipv6Range - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4_
range string - IPv4 range assigned to the NodeBalancer.
- ipv6_
ranges list(object) - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id Integer
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range String
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges
List<Get
Vpc Subnets Vpc Subnet Nodebalancer Ipv6Range> - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range string
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges
Get
Vpc Subnets Vpc Subnet Nodebalancer Ipv6Range[] - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id int
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4_
range str - IPv4 range assigned to the NodeBalancer.
- ipv6_
ranges Sequence[GetVpc Subnets Vpc Subnet Nodebalancer Ipv6Range] - (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
- id Number
- ID of a NodeBalancer assigned to the VPC Subnet.
- ipv4Range String
- IPv4 range assigned to the NodeBalancer.
- ipv6Ranges List<Property Map>
- (Read-Only Object List) A list of IPv6 ranges assigned to the NodeBalancer. Referenced with an index (e.g.
ipv6_ranges.0.range).
GetVpcSubnetsVpcSubnetNodebalancerIpv6Range
- Range string
- An IPv6 address range in CIDR notation.
- Range string
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
- range string
- An IPv6 address range in CIDR notation.
- range str
- An IPv6 address range in CIDR notation.
- range String
- An IPv6 address range in CIDR notation.
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linodeTerraform Provider.
published on Tuesday, Sep 15, 2026 by Pulumi