published on Wednesday, May 6, 2026 by Pulumi
published on Wednesday, May 6, 2026 by Pulumi
Provides information about a list of Linode VPC IPs 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 IPs.
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const filtered_ips = linode.getVpcIps({
filters: [{
name: "address",
values: ["10.0.0.0"],
}],
});
export const vpcIps = filtered_ips.then(filtered_ips => filtered_ips.vpcIps);
import pulumi
import pulumi_linode as linode
filtered_ips = linode.get_vpc_ips(filters=[{
"name": "address",
"values": ["10.0.0.0"],
}])
pulumi.export("vpcIps", filtered_ips.vpc_ips)
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v5/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
filtered_ips, err := linode.GetVpcIps(ctx, &linode.GetVpcIpsArgs{
Filters: []linode.GetVpcIpsFilter{
{
Name: "address",
Values: []string{
"10.0.0.0",
},
},
},
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIps", filtered_ips.VpcIps)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var filtered_ips = Linode.Index.GetVpcIps.Invoke(new()
{
Filters = new[]
{
new Linode.Inputs.GetVpcIpsFilterInputArgs
{
Name = "address",
Values = new[]
{
"10.0.0.0",
},
},
},
});
return new Dictionary<string, object?>
{
["vpcIps"] = filtered_ips.Apply(filtered_ips => filtered_ips.Apply(getVpcIpsResult => getVpcIpsResult.VpcIps)),
};
});
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.GetVpcIpsArgs;
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 filtered-ips = LinodeFunctions.getVpcIps(GetVpcIpsArgs.builder()
.filters(GetVpcIpsFilterArgs.builder()
.name("address")
.values("10.0.0.0")
.build())
.build());
ctx.export("vpcIps", filtered_ips.vpcIps());
}
}
variables:
filtered-ips:
fn::invoke:
function: linode:getVpcIps
arguments:
filters:
- name: address
values:
- 10.0.0.0
outputs:
vpcIps: ${["filtered-ips"].vpcIps}
Example coming soon!
One might also use this data source to list all VPC IPs in a specific VPC. The following example shows how to do this.
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const specific_vpc_ips = linode.getVpcIps({
vpcId: 123,
});
export const vpcIps = specific_vpc_ips.then(specific_vpc_ips => specific_vpc_ips.vpcIps);
import pulumi
import pulumi_linode as linode
specific_vpc_ips = linode.get_vpc_ips(vpc_id=123)
pulumi.export("vpcIps", specific_vpc_ips.vpc_ips)
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v5/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
specific_vpc_ips, err := linode.GetVpcIps(ctx, &linode.GetVpcIpsArgs{
VpcId: pulumi.IntRef(123),
}, nil)
if err != nil {
return err
}
ctx.Export("vpcIps", specific_vpc_ips.VpcIps)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var specific_vpc_ips = Linode.Index.GetVpcIps.Invoke(new()
{
VpcId = 123,
});
return new Dictionary<string, object?>
{
["vpcIps"] = specific_vpc_ips.Apply(specific_vpc_ips => specific_vpc_ips.Apply(getVpcIpsResult => getVpcIpsResult.VpcIps)),
};
});
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.GetVpcIpsArgs;
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 specific-vpc-ips = LinodeFunctions.getVpcIps(GetVpcIpsArgs.builder()
.vpcId(123)
.build());
ctx.export("vpcIps", specific_vpc_ips.vpcIps());
}
}
variables:
specific-vpc-ips:
fn::invoke:
function: linode:getVpcIps
arguments:
vpcId: 123
outputs:
vpcIps: ${["specific-vpc-ips"].vpcIps}
Example coming soon!
By default, this data source retrieves only IPv4 addresses. To instead retrieve IPv6 addresses, the ipv6 field should be set to true:
import * as pulumi from "@pulumi/pulumi";
import * as linode from "@pulumi/linode";
const all_vpc_ipv6 = linode.getVpcIps({
ipv6: true,
});
import pulumi
import pulumi_linode as linode
all_vpc_ipv6 = linode.get_vpc_ips(ipv6=True)
package main
import (
"github.com/pulumi/pulumi-linode/sdk/v5/go/linode"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := linode.GetVpcIps(ctx, &linode.GetVpcIpsArgs{
Ipv6: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Linode = Pulumi.Linode;
return await Deployment.RunAsync(() =>
{
var all_vpc_ipv6 = Linode.Index.GetVpcIps.Invoke(new()
{
Ipv6 = true,
});
});
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.GetVpcIpsArgs;
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 all-vpc-ipv6 = LinodeFunctions.getVpcIps(GetVpcIpsArgs.builder()
.ipv6(true)
.build());
}
}
variables:
all-vpc-ipv6:
fn::invoke:
function: linode:getVpcIps
arguments:
ipv6: true
Example coming soon!
Filterable Fields
activeconfigIdlinodeIdregionvpcId
Using getVpcIps
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 getVpcIps(args: GetVpcIpsArgs, opts?: InvokeOptions): Promise<GetVpcIpsResult>
function getVpcIpsOutput(args: GetVpcIpsOutputArgs, opts?: InvokeOptions): Output<GetVpcIpsResult>def get_vpc_ips(filters: Optional[Sequence[GetVpcIpsFilter]] = None,
ipv6: Optional[bool] = None,
vpc_id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetVpcIpsResult
def get_vpc_ips_output(filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetVpcIpsFilterArgs]]]] = None,
ipv6: pulumi.Input[Optional[bool]] = None,
vpc_id: pulumi.Input[Optional[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVpcIpsResult]func GetVpcIps(ctx *Context, args *GetVpcIpsArgs, opts ...InvokeOption) (*GetVpcIpsResult, error)
func GetVpcIpsOutput(ctx *Context, args *GetVpcIpsOutputArgs, opts ...InvokeOption) GetVpcIpsResultOutput> Note: This function is named GetVpcIps in the Go SDK.
public static class GetVpcIps
{
public static Task<GetVpcIpsResult> InvokeAsync(GetVpcIpsArgs args, InvokeOptions? opts = null)
public static Output<GetVpcIpsResult> Invoke(GetVpcIpsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetVpcIpsResult> getVpcIps(GetVpcIpsArgs args, InvokeOptions options)
public static Output<GetVpcIpsResult> getVpcIps(GetVpcIpsArgs args, InvokeOptions options)
fn::invoke:
function: linode:index/getVpcIps:getVpcIps
arguments:
# arguments dictionarydata "linode_getvpcips" "name" {
# arguments
}The following arguments are supported:
- Filters
List<Get
Vpc Ips Filter> - Ipv6 bool
- Vpc
Id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- Filters
[]Get
Vpc Ips Filter - Ipv6 bool
- Vpc
Id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- filters list(object)
- ipv6 bool
- vpc_
id number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- filters
List<Get
Vpc Ips Filter> - ipv6 Boolean
- vpc
Id Integer - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- filters
Get
Vpc Ips Filter[] - ipv6 boolean
- vpc
Id number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- filters
Sequence[Get
Vpc Ips Filter] - ipv6 bool
- vpc_
id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- filters List<Property Map>
- ipv6 Boolean
- vpc
Id Number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
getVpcIps Result
The following output properties are available:
- Id string
- Vpc
Ips List<GetVpc Ips Vpc Ip> - Filters
List<Get
Vpc Ips Filter> - Ipv6 bool
- Vpc
Id int - The unique globally general API entity identifier for the VPC.
- Id string
- Vpc
Ips []GetVpc Ips Vpc Ip - Filters
[]Get
Vpc Ips Filter - Ipv6 bool
- Vpc
Id int - The unique globally general API entity identifier for the VPC.
- id string
- vpc_
ips list(object) - filters list(object)
- ipv6 bool
- vpc_
id number - The unique globally general API entity identifier for the VPC.
- id String
- vpc
Ips List<GetVpc Ips Vpc Ip> - filters
List<Get
Vpc Ips Filter> - ipv6 Boolean
- vpc
Id Integer - The unique globally general API entity identifier for the VPC.
- id string
- vpc
Ips GetVpc Ips Vpc Ip[] - filters
Get
Vpc Ips Filter[] - ipv6 boolean
- vpc
Id number - The unique globally general API entity identifier for the VPC.
- id str
- vpc_
ips Sequence[GetVpc Ips Vpc Ip] - filters
Sequence[Get
Vpc Ips Filter] - ipv6 bool
- vpc_
id int - The unique globally general API entity identifier for the VPC.
- id String
- vpc
Ips List<Property Map> - filters List<Property Map>
- ipv6 Boolean
- vpc
Id Number - The unique globally general API entity identifier for the VPC.
Supporting Types
GetVpcIpsFilter
- 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)
GetVpcIpsVpcIp
- Active bool
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- Address string
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- Address
Range string - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- Config
Id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- Gateway string
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- Interface
Id int - The globally general API entity identifier for the Linode interface.
- Ipv6Addresses
List<Get
Vpc Ips Vpc Ip Ipv6Address> - The addresses within the prefix that the interface is associated with.
- Ipv6Is
Public bool - The isPublic setting for the interface associated with this address.
- Ipv6Range string
- The /64 prefix, in CIDR notation, assigned to an interface.
- Linode
Id int - The identifier for the Linode the VPC interface currently belongs to.
- Nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- Prefix int
- The number of bits set in the subnet mask.
- Region string
- The region of the VPC.
- Subnet
Id int - The id of the VPC Subnet for this interface.
- Subnet
Mask string - The mask that separates host bits from network bits for the address or address_range.
- Vpc
Id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- Active bool
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- Address string
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- Address
Range string - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- Config
Id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- Gateway string
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- Interface
Id int - The globally general API entity identifier for the Linode interface.
- Ipv6Addresses
[]Get
Vpc Ips Vpc Ip Ipv6Address - The addresses within the prefix that the interface is associated with.
- Ipv6Is
Public bool - The isPublic setting for the interface associated with this address.
- Ipv6Range string
- The /64 prefix, in CIDR notation, assigned to an interface.
- Linode
Id int - The identifier for the Linode the VPC interface currently belongs to.
- Nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- Prefix int
- The number of bits set in the subnet mask.
- Region string
- The region of the VPC.
- Subnet
Id int - The id of the VPC Subnet for this interface.
- Subnet
Mask string - The mask that separates host bits from network bits for the address or address_range.
- Vpc
Id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- active bool
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- address string
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- address_
range string - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- config_
id number - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway string
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- interface_
id number - The globally general API entity identifier for the Linode interface.
- ipv6_
addresses list(object) - The addresses within the prefix that the interface is associated with.
- ipv6_
is_ boolpublic - The isPublic setting for the interface associated with this address.
- ipv6_
range string - The /64 prefix, in CIDR notation, assigned to an interface.
- linode_
id number - The identifier for the Linode the VPC interface currently belongs to.
- nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- prefix number
- The number of bits set in the subnet mask.
- region string
- The region of the VPC.
- subnet_
id number - The id of the VPC Subnet for this interface.
- subnet_
mask string - The mask that separates host bits from network bits for the address or address_range.
- vpc_
id number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- active Boolean
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- address String
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- address
Range String - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- config
Id Integer - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway String
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- interface
Id Integer - The globally general API entity identifier for the Linode interface.
- ipv6Addresses
List<Get
Vpc Ips Vpc Ip Ipv6Address> - The addresses within the prefix that the interface is associated with.
- ipv6Is
Public Boolean - The isPublic setting for the interface associated with this address.
- ipv6Range String
- The /64 prefix, in CIDR notation, assigned to an interface.
- linode
Id Integer - The identifier for the Linode the VPC interface currently belongs to.
- nat11 String
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- prefix Integer
- The number of bits set in the subnet mask.
- region String
- The region of the VPC.
- subnet
Id Integer - The id of the VPC Subnet for this interface.
- subnet
Mask String - The mask that separates host bits from network bits for the address or address_range.
- vpc
Id Integer - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- active boolean
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- address string
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- address
Range string - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- config
Id number - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway string
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- interface
Id number - The globally general API entity identifier for the Linode interface.
- ipv6Addresses
Get
Vpc Ips Vpc Ip Ipv6Address[] - The addresses within the prefix that the interface is associated with.
- ipv6Is
Public boolean - The isPublic setting for the interface associated with this address.
- ipv6Range string
- The /64 prefix, in CIDR notation, assigned to an interface.
- linode
Id number - The identifier for the Linode the VPC interface currently belongs to.
- nat11 string
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- prefix number
- The number of bits set in the subnet mask.
- region string
- The region of the VPC.
- subnet
Id number - The id of the VPC Subnet for this interface.
- subnet
Mask string - The mask that separates host bits from network bits for the address or address_range.
- vpc
Id number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- active bool
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- address str
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- address_
range str - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- config_
id int - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway str
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- interface_
id int - The globally general API entity identifier for the Linode interface.
- ipv6_
addresses Sequence[GetVpc Ips Vpc Ip Ipv6Address] - The addresses within the prefix that the interface is associated with.
- ipv6_
is_ boolpublic - The isPublic setting for the interface associated with this address.
- ipv6_
range str - The /64 prefix, in CIDR notation, assigned to an interface.
- linode_
id int - The identifier for the Linode the VPC interface currently belongs to.
- nat11 str
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- prefix int
- The number of bits set in the subnet mask.
- region str
- The region of the VPC.
- subnet_
id int - The id of the VPC Subnet for this interface.
- subnet_
mask str - The mask that separates host bits from network bits for the address or address_range.
- vpc_
id int - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
- active Boolean
- True if the VPC interface is in use, meaning that the Linode was powered on using the configId to which the interface belongs. Otherwise false.
- address String
- An IPv4 address configured for this VPC interface. These follow the RFC 1918 private address format. Null if an address_range.
- address
Range String - A range of IPv4 addresses configured for this VPC interface. Null if a single address.
- config
Id Number - The globally general entity identifier for the Linode configuration profile where the VPC is included.
- gateway String
- The default gateway for the VPC subnet that the IP or IP range belongs to.
- interface
Id Number - The globally general API entity identifier for the Linode interface.
- ipv6Addresses List<Property Map>
- The addresses within the prefix that the interface is associated with.
- ipv6Is
Public Boolean - The isPublic setting for the interface associated with this address.
- ipv6Range String
- The /64 prefix, in CIDR notation, assigned to an interface.
- linode
Id Number - The identifier for the Linode the VPC interface currently belongs to.
- nat11 String
- The public IP address used for NAT 1:1 with the VPC. This is empty if NAT 1:1 isn't used.
- prefix Number
- The number of bits set in the subnet mask.
- region String
- The region of the VPC.
- subnet
Id Number - The id of the VPC Subnet for this interface.
- subnet
Mask String - The mask that separates host bits from network bits for the address or address_range.
- vpc
Id Number - The id of the parent VPC for the list of VPC IPs.
filter- (Optional) A set of filters used to select Linode VPC IPs that meet certain requirements.
GetVpcIpsVpcIpIpv6Address
- Slaac
Address string - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- Slaac
Address string - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- slaac_
address string - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- slaac
Address String - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- slaac
Address string - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- slaac_
address str - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
- slaac
Address String - A specific address within the prefix that the interface is expected to autoconfigure through SLAAC.
Package Details
- Repository
- Linode pulumi/pulumi-linode
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
linodeTerraform Provider.
published on Wednesday, May 6, 2026 by Pulumi
