We recommend using Azure Native.
azure.network.PublicIpPrefix
Explore with Pulumi AI
Manages a Public IP Prefix.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const examplePublicIpPrefix = new azure.network.PublicIpPrefix("example", {
name: "acceptanceTestPublicIpPrefix1",
location: example.location,
resourceGroupName: example.name,
prefixLength: 31,
tags: {
environment: "Production",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_public_ip_prefix = azure.network.PublicIpPrefix("example",
name="acceptanceTestPublicIpPrefix1",
location=example.location,
resource_group_name=example.name,
prefix_length=31,
tags={
"environment": "Production",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = network.NewPublicIpPrefix(ctx, "example", &network.PublicIpPrefixArgs{
Name: pulumi.String("acceptanceTestPublicIpPrefix1"),
Location: example.Location,
ResourceGroupName: example.Name,
PrefixLength: pulumi.Int(31),
Tags: pulumi.StringMap{
"environment": pulumi.String("Production"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var examplePublicIpPrefix = new Azure.Network.PublicIpPrefix("example", new()
{
Name = "acceptanceTestPublicIpPrefix1",
Location = example.Location,
ResourceGroupName = example.Name,
PrefixLength = 31,
Tags =
{
{ "environment", "Production" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.PublicIpPrefix;
import com.pulumi.azure.network.PublicIpPrefixArgs;
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) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var examplePublicIpPrefix = new PublicIpPrefix("examplePublicIpPrefix", PublicIpPrefixArgs.builder()
.name("acceptanceTestPublicIpPrefix1")
.location(example.location())
.resourceGroupName(example.name())
.prefixLength(31)
.tags(Map.of("environment", "Production"))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
examplePublicIpPrefix:
type: azure:network:PublicIpPrefix
name: example
properties:
name: acceptanceTestPublicIpPrefix1
location: ${example.location}
resourceGroupName: ${example.name}
prefixLength: 31
tags:
environment: Production
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,
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[Sequence[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",
IpVersion = "string",
Location = "string",
Name = "string",
PrefixLength = 0,
Sku = "string",
Tags =
{
{ "string", "string" },
},
Zones = new[]
{
"string",
},
});
example, err := network.NewPublicIpPrefix(ctx, "publicIpPrefixResource", &network.PublicIpPrefixArgs{
ResourceGroupName: 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"),
},
Zones: pulumi.StringArray{
pulumi.String("string"),
},
})
var publicIpPrefixResource = new PublicIpPrefix("publicIpPrefixResource", PublicIpPrefixArgs.builder()
.resourceGroupName("string")
.ipVersion("string")
.location("string")
.name("string")
.prefixLength(0)
.sku("string")
.tags(Map.of("string", "string"))
.zones("string")
.build());
public_ip_prefix_resource = azure.network.PublicIpPrefix("publicIpPrefixResource",
resource_group_name="string",
ip_version="string",
location="string",
name="string",
prefix_length=0,
sku="string",
tags={
"string": "string",
},
zones=["string"])
const publicIpPrefixResource = new azure.network.PublicIpPrefix("publicIpPrefixResource", {
resourceGroupName: "string",
ipVersion: "string",
location: "string",
name: "string",
prefixLength: 0,
sku: "string",
tags: {
string: "string",
},
zones: ["string"],
});
type: azure:network:PublicIpPrefix
properties:
ipVersion: string
location: string
name: string
prefixLength: 0
resourceGroupName: string
sku: string
tags:
string: string
zones:
- 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
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. Changing this forces a new resource to be created.
- Ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- Sku string
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Zones List<string>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix. Changing this forces a new resource to be created.
- Ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- Sku string
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- map[string]string
- A mapping of tags to assign to the resource.
- Zones []string
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix. Changing this forces a new resource to be created.
- ip
Version String - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- sku String
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Map<String,String>
- A mapping of tags to assign to the resource.
- zones List<String>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- resource
Group stringName - The name of the resource group in which to create the Public IP Prefix. Changing this forces a new resource to be created.
- ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- sku string
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- zones string[]
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- resource_
group_ strname - The name of the resource group in which to create the Public IP Prefix. Changing this forces a new resource to be created.
- ip_
version str - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- sku str
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- zones Sequence[str]
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix. Changing this forces a new resource to be created.
- ip
Version String - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- sku String
The SKU of the Public IP Prefix. Accepted values are
Standard
. Defaults toStandard
. Changing this forces a new resource to be created.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Map<String>
- A mapping of tags to assign to the resource.
- zones List<String>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
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,
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[Sequence[str]] = None) -> PublicIpPrefix
func 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)
Resource lookup is not supported in YAML
- 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.
- Ip
Prefix string - The IP address prefix value that was allocated.
- Ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Zones List<string>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- Ip
Prefix string - The IP address prefix value that was allocated.
- Ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- Resource
Group stringName - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- map[string]string
- A mapping of tags to assign to the resource.
- Zones []string
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- ip
Prefix String - The IP address prefix value that was allocated.
- ip
Version String - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Map<String,String>
- A mapping of tags to assign to the resource.
- zones List<String>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- ip
Prefix string - The IP address prefix value that was allocated.
- ip
Version string - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- resource
Group stringName - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- zones string[]
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- ip_
prefix str - The IP address prefix value that was allocated.
- ip_
version str - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- resource_
group_ strname - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- zones Sequence[str]
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
- ip
Prefix String - The IP address prefix value that was allocated.
- ip
Version String - The IP Version to use,
IPv6
orIPv4
. 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.Please Note: There may be Public IP address limits on the subscription . More information available here
- resource
Group StringName - The name of the resource group in which to create the Public IP Prefix. 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.Note: Public IP Prefix can only be created with Standard SKUs at this time.
- Map<String>
- A mapping of tags to assign to the resource.
- zones List<String>
Specifies a list of Availability Zones in which this Public IP Prefix should be located. Changing this forces a new Public IP Prefix to be created.
Please Note: Availability Zones are only supported in several regions at this time.
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
azurerm
Terraform Provider.