We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Use this data source to access information about an existing Public IP Prefix.
Example Usage
Reference An Existing)
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.Network.GetPublicIpPrefix.InvokeAsync(new Azure.Network.GetPublicIpPrefixArgs
{
Name = "name_of_public_ip",
ResourceGroupName = "name_of_resource_group",
}));
this.PublicIpPrefix = example.Apply(example => example.IpPrefix);
}
[Output("publicIpPrefix")]
public Output<string> PublicIpPrefix { get; set; }
}
package main
import (
"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 {
example, err := network.LookupPublicIpPrefix(ctx, &network.LookupPublicIpPrefixArgs{
Name: "name_of_public_ip",
ResourceGroupName: "name_of_resource_group",
}, nil)
if err != nil {
return err
}
ctx.Export("publicIpPrefix", example.IpPrefix)
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.network.getPublicIpPrefix({
name: "name_of_public_ip",
resourceGroupName: "name_of_resource_group",
});
export const publicIpPrefix = example.then(example => example.ipPrefix);
import pulumi
import pulumi_azure as azure
example = azure.network.get_public_ip_prefix(name="name_of_public_ip",
resource_group_name="name_of_resource_group")
pulumi.export("publicIpPrefix", example.ip_prefix)
Example coming soon!
Using getPublicIpPrefix
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 getPublicIpPrefix(args: GetPublicIpPrefixArgs, opts?: InvokeOptions): Promise<GetPublicIpPrefixResult>
function getPublicIpPrefixOutput(args: GetPublicIpPrefixOutputArgs, opts?: InvokeOptions): Output<GetPublicIpPrefixResult>def get_public_ip_prefix(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPublicIpPrefixResult
def get_public_ip_prefix_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPublicIpPrefixResult]func LookupPublicIpPrefix(ctx *Context, args *LookupPublicIpPrefixArgs, opts ...InvokeOption) (*LookupPublicIpPrefixResult, error)
func LookupPublicIpPrefixOutput(ctx *Context, args *LookupPublicIpPrefixOutputArgs, opts ...InvokeOption) LookupPublicIpPrefixResultOutput> Note: This function is named LookupPublicIpPrefix in the Go SDK.
public static class GetPublicIpPrefix
{
public static Task<GetPublicIpPrefixResult> InvokeAsync(GetPublicIpPrefixArgs args, InvokeOptions? opts = null)
public static Output<GetPublicIpPrefixResult> Invoke(GetPublicIpPrefixInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPublicIpPrefixResult> getPublicIpPrefix(GetPublicIpPrefixArgs args, InvokeOptions options)
public static Output<GetPublicIpPrefixResult> getPublicIpPrefix(GetPublicIpPrefixArgs args, InvokeOptions options)
fn::invoke:
function: azure:network/getPublicIpPrefix:getPublicIpPrefix
arguments:
# arguments dictionaryThe following arguments are supported:
- Name string
- Specifies the name of the public IP prefix.
- Resource
Group stringName - Specifies the name of the resource group.
- Name string
- Specifies the name of the public IP prefix.
- Resource
Group stringName - Specifies the name of the resource group.
- name String
- Specifies the name of the public IP prefix.
- resource
Group StringName - Specifies the name of the resource group.
- name string
- Specifies the name of the public IP prefix.
- resource
Group stringName - Specifies the name of the resource group.
- name str
- Specifies the name of the public IP prefix.
- resource_
group_ strname - Specifies the name of the resource group.
- name String
- Specifies the name of the public IP prefix.
- resource
Group StringName - Specifies the name of the resource group.
getPublicIpPrefix Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Prefix string - Location string
- The supported Azure location where the resource exists.
- Name string
- The name of the Public IP prefix resource.
- Prefix
Length int - The number of bits of the prefix.
- Resource
Group stringName - The name of the resource group in which to create the public IP.
- Sku string
- The SKU of the Public IP Prefix.
- Dictionary<string, string>
- A mapping of tags to assigned to the resource.
- Zones List<string>
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Prefix string - Location string
- The supported Azure location where the resource exists.
- Name string
- The name of the Public IP prefix resource.
- Prefix
Length int - The number of bits of the prefix.
- Resource
Group stringName - The name of the resource group in which to create the public IP.
- Sku string
- The SKU of the Public IP Prefix.
- map[string]string
- A mapping of tags to assigned to the resource.
- Zones []string
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Prefix String - location String
- The supported Azure location where the resource exists.
- name String
- The name of the Public IP prefix resource.
- prefix
Length Integer - The number of bits of the prefix.
- resource
Group StringName - The name of the resource group in which to create the public IP.
- sku String
- The SKU of the Public IP Prefix.
- Map<String,String>
- A mapping of tags to assigned to the resource.
- zones List<String>
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Prefix string - location string
- The supported Azure location where the resource exists.
- name string
- The name of the Public IP prefix resource.
- prefix
Length number - The number of bits of the prefix.
- resource
Group stringName - The name of the resource group in which to create the public IP.
- sku string
- The SKU of the Public IP Prefix.
- {[key: string]: string}
- A mapping of tags to assigned to the resource.
- zones string[]
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
prefix str - location str
- The supported Azure location where the resource exists.
- name str
- The name of the Public IP prefix resource.
- prefix_
length int - The number of bits of the prefix.
- resource_
group_ strname - The name of the resource group in which to create the public IP.
- sku str
- The SKU of the Public IP Prefix.
- Mapping[str, str]
- A mapping of tags to assigned to the resource.
- zones Sequence[str]
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Prefix String - location String
- The supported Azure location where the resource exists.
- name String
- The name of the Public IP prefix resource.
- prefix
Length Number - The number of bits of the prefix.
- resource
Group StringName - The name of the resource group in which to create the public IP.
- sku String
- The SKU of the Public IP Prefix.
- Map<String>
- A mapping of tags to assigned to the resource.
- zones List<String>
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.
Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
