We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Public IP Prefix.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var examplePublicIpPrefix = new Azure.Network.PublicIpPrefix("examplePublicIpPrefix", new Azure.Network.PublicIpPrefixArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
PrefixLength = 31,
Tags =
{
{ "environment", "Production" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = network.NewPublicIpPrefix(ctx, "examplePublicIpPrefix", &network.PublicIpPrefixArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
PrefixLength: pulumi.Int(31),
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const examplePublicIpPrefix = new azure.network.PublicIpPrefix("examplePublicIpPrefix", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
prefixLength: 31,
tags: {
environment: "Production",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_public_ip_prefix = azure.network.PublicIpPrefix("examplePublicIpPrefix",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
prefix_length=31,
tags={
"environment": "Production",
})
Example coming soon!
Create PublicIpPrefix Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PublicIpPrefix(name: string, args: PublicIpPrefixArgs, opts?: CustomResourceOptions);@overload
def PublicIpPrefix(resource_name: str,
args: PublicIpPrefixArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PublicIpPrefix(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
availability_zone: Optional[str] = None,
ip_version: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
prefix_length: Optional[int] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
zones: Optional[str] = None)func NewPublicIpPrefix(ctx *Context, name string, args PublicIpPrefixArgs, opts ...ResourceOption) (*PublicIpPrefix, error)public PublicIpPrefix(string name, PublicIpPrefixArgs args, CustomResourceOptions? opts = null)
public PublicIpPrefix(String name, PublicIpPrefixArgs args)
public PublicIpPrefix(String name, PublicIpPrefixArgs args, CustomResourceOptions options)
type: azure:network:PublicIpPrefix
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 PublicIpPrefixArgs
- 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 PublicIpPrefixArgs
- 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 PublicIpPrefixArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PublicIpPrefixArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PublicIpPrefixArgs
- 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 publicIpPrefixResource = new Azure.Network.PublicIpPrefix("publicIpPrefixResource", new()
{
ResourceGroupName = "string",
AvailabilityZone = "string",
IpVersion = "string",
Location = "string",
Name = "string",
PrefixLength = 0,
Sku = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewPublicIpPrefix(ctx, "publicIpPrefixResource", &network.PublicIpPrefixArgs{
ResourceGroupName: pulumi.String("string"),
AvailabilityZone: pulumi.String("string"),
IpVersion: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PrefixLength: pulumi.Int(0),
Sku: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var publicIpPrefixResource = new PublicIpPrefix("publicIpPrefixResource", PublicIpPrefixArgs.builder()
.resourceGroupName("string")
.availabilityZone("string")
.ipVersion("string")
.location("string")
.name("string")
.prefixLength(0)
.sku("string")
.tags(Map.of("string", "string"))
.build());
public_ip_prefix_resource = azure.network.PublicIpPrefix("publicIpPrefixResource",
resource_group_name="string",
availability_zone="string",
ip_version="string",
location="string",
name="string",
prefix_length=0,
sku="string",
tags={
"string": "string",
})
const publicIpPrefixResource = new azure.network.PublicIpPrefix("publicIpPrefixResource", {
resourceGroupName: "string",
availabilityZone: "string",
ipVersion: "string",
location: "string",
name: "string",
prefixLength: 0,
sku: "string",
tags: {
string: "string",
},
});
type: azure:network:PublicIpPrefix
properties:
availabilityZone: string
ipVersion: string
location: string
name: string
prefixLength: 0
resourceGroupName: string
sku: string
tags:
string: string
PublicIpPrefix 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 PublicIpPrefix resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- Availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - Ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- Prefix
Length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - Sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Zones string
- Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- Availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - Ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- Prefix
Length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - Sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- Zones string
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix.
- availability
Zone String - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Version String - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length Integer - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - sku String
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- zones String
- resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length number - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- zones string
- resource_
group_ strname - The name of the resource group in which to create the Public IP Prefix.
- availability_
zone str - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip_
version str - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix_
length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - sku str
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- zones str
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix.
- availability
Zone String - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Version String - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length Number - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - sku String
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags to assign to the resource.
- zones String
Outputs
All input properties are implicitly available as output properties. Additionally, the PublicIpPrefix resource produces the following output properties:
Look up Existing PublicIpPrefix Resource
Get an existing PublicIpPrefix 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?: PublicIpPrefixState, opts?: CustomResourceOptions): PublicIpPrefix@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availability_zone: Optional[str] = None,
ip_prefix: Optional[str] = None,
ip_version: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
prefix_length: Optional[int] = None,
resource_group_name: Optional[str] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
zones: Optional[str] = None) -> PublicIpPrefixfunc GetPublicIpPrefix(ctx *Context, name string, id IDInput, state *PublicIpPrefixState, opts ...ResourceOption) (*PublicIpPrefix, error)public static PublicIpPrefix Get(string name, Input<string> id, PublicIpPrefixState? state, CustomResourceOptions? opts = null)public static PublicIpPrefix get(String name, Output<String> id, PublicIpPrefixState state, CustomResourceOptions options)resources: _: type: azure:network:PublicIpPrefix 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.
- Availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - Ip
Prefix string - The IP address prefix value that was allocated.
- Ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- Prefix
Length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- Sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Zones string
- Availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - Ip
Prefix string - The IP address prefix value that was allocated.
- Ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- Prefix
Length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- Sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- Zones string
- availability
Zone String - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Prefix String - The IP address prefix value that was allocated.
- ip
Version String - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length Integer - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Public IP Prefix.
- sku String
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- zones String
- availability
Zone string - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Prefix string - The IP address prefix value that was allocated.
- ip
Version string - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length number - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - resource
Group stringName - The name of the resource group in which to create the Public IP Prefix.
- sku string
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- zones string
- availability_
zone str - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip_
prefix str - The IP address prefix value that was allocated.
- ip_
version str - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix_
length int - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - resource_
group_ strname - The name of the resource group in which to create the Public IP Prefix.
- sku str
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- zones str
- availability
Zone String - The availability zone to allocate the Public IP in. Possible values are
Zone-Redundant,1,2,3, andNo-Zone. Defaults toZone-Redundant. - ip
Prefix String - The IP address prefix value that was allocated.
- ip
Version String - The IP Version to use,
IPv6orIPv4. Changing this forces a new resource to be created. Default isIPv4. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Public IP Prefix resource . Changing this forces a new resource to be created.
- prefix
Length Number - Specifies the number of bits of the prefix. The value can be set between 0 (4,294,967,296 addresses) and 31 (2 addresses). Defaults to
28(16 addresses). Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Public IP Prefix.
- sku String
- The SKU of the Public IP Prefix. Accepted values are
Standard. Defaults toStandard. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags to assign to the resource.
- zones String
Import
Public IP Prefixes can be imported using the resource id, e.g.
$ pulumi import azure:network/publicIpPrefix:PublicIpPrefix myPublicIpPrefix /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/publicIPPrefixes/myPublicIpPrefix1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
