published on Saturday, Jul 18, 2026 by Pulumi
published on Saturday, Jul 18, 2026 by Pulumi
An education program enrollment that groups Entra domains under a single sovereign/edu program scope.
Uses Azure REST API version 2026-03-01-preview.
Example Usage
Create or update an edu enrollment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var eduEnrollment = new AzureNative.ProgramEnrollment.EduEnrollment("eduEnrollment", new()
{
EnrollmentName = "default",
Location = "eastus",
Properties = new AzureNative.ProgramEnrollment.Inputs.EduEnrollmentPropertiesArgs
{
Domains = new[]
{
new AzureNative.ProgramEnrollment.Inputs.DomainGroupArgs
{
DomainNames = new[]
{
"university.edu",
"college.edu",
},
TenantId = "00000000-0000-0000-0000-000000000001",
},
},
},
ResourceGroupName = "testrg",
});
});
package main
import (
programenrollment "github.com/pulumi/pulumi-azure-native-sdk/programenrollment/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := programenrollment.NewEduEnrollment(ctx, "eduEnrollment", &programenrollment.EduEnrollmentArgs{
EnrollmentName: pulumi.String("default"),
Location: pulumi.String("eastus"),
Properties: &programenrollment.EduEnrollmentPropertiesArgs{
Domains: programenrollment.DomainGroupArray{
&programenrollment.DomainGroupArgs{
DomainNames: pulumi.StringArray{
pulumi.String("university.edu"),
pulumi.String("college.edu"),
},
TenantId: pulumi.String("00000000-0000-0000-0000-000000000001"),
},
},
},
ResourceGroupName: pulumi.String("testrg"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_programenrollment_eduenrollment" "eduEnrollment" {
enrollment_name = "default"
location = "eastus"
properties = {
domains = [{
"domainNames" = ["university.edu", "college.edu"]
"tenantId" = "00000000-0000-0000-0000-000000000001"
}]
}
resource_group_name = "testrg"
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.programenrollment.EduEnrollment;
import com.pulumi.azurenative.programenrollment.EduEnrollmentArgs;
import com.pulumi.azurenative.programenrollment.inputs.EduEnrollmentPropertiesArgs;
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) {
var eduEnrollment = new EduEnrollment("eduEnrollment", EduEnrollmentArgs.builder()
.enrollmentName("default")
.location("eastus")
.properties(EduEnrollmentPropertiesArgs.builder()
.domains(DomainGroupArgs.builder()
.domainNames(
"university.edu",
"college.edu")
.tenantId("00000000-0000-0000-0000-000000000001")
.build())
.build())
.resourceGroupName("testrg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const eduEnrollment = new azure_native.programenrollment.EduEnrollment("eduEnrollment", {
enrollmentName: "default",
location: "eastus",
properties: {
domains: [{
domainNames: [
"university.edu",
"college.edu",
],
tenantId: "00000000-0000-0000-0000-000000000001",
}],
},
resourceGroupName: "testrg",
});
import pulumi
import pulumi_azure_native as azure_native
edu_enrollment = azure_native.programenrollment.EduEnrollment("eduEnrollment",
enrollment_name="default",
location="eastus",
properties={
"domains": [{
"domain_names": [
"university.edu",
"college.edu",
],
"tenant_id": "00000000-0000-0000-0000-000000000001",
}],
},
resource_group_name="testrg")
resources:
eduEnrollment:
type: azure-native:programenrollment:EduEnrollment
properties:
enrollmentName: default
location: eastus
properties:
domains:
- domainNames:
- university.edu
- college.edu
tenantId: 00000000-0000-0000-0000-000000000001
resourceGroupName: testrg
Create EduEnrollment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EduEnrollment(name: string, args: EduEnrollmentArgs, opts?: CustomResourceOptions);@overload
def EduEnrollment(resource_name: str,
args: EduEnrollmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EduEnrollment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
enrollment_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[EduEnrollmentPropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewEduEnrollment(ctx *Context, name string, args EduEnrollmentArgs, opts ...ResourceOption) (*EduEnrollment, error)public EduEnrollment(string name, EduEnrollmentArgs args, CustomResourceOptions? opts = null)
public EduEnrollment(String name, EduEnrollmentArgs args)
public EduEnrollment(String name, EduEnrollmentArgs args, CustomResourceOptions options)
type: azure-native:programenrollment:EduEnrollment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_programenrollment_edu_enrollment" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args EduEnrollmentArgs
- 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 EduEnrollmentArgs
- 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 EduEnrollmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EduEnrollmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EduEnrollmentArgs
- 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 eduEnrollmentResource = new AzureNative.ProgramEnrollment.EduEnrollment("eduEnrollmentResource", new()
{
ResourceGroupName = "string",
EnrollmentName = "string",
Location = "string",
Properties = new AzureNative.ProgramEnrollment.Inputs.EduEnrollmentPropertiesArgs
{
Domains = new[]
{
new AzureNative.ProgramEnrollment.Inputs.DomainGroupArgs
{
DomainNames = new[]
{
"string",
},
TenantId = "string",
},
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := programenrollment.NewEduEnrollment(ctx, "eduEnrollmentResource", &programenrollment.EduEnrollmentArgs{
ResourceGroupName: pulumi.String("string"),
EnrollmentName: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &programenrollment.EduEnrollmentPropertiesArgs{
Domains: programenrollment.DomainGroupArray{
&programenrollment.DomainGroupArgs{
DomainNames: pulumi.StringArray{
pulumi.String("string"),
},
TenantId: pulumi.String("string"),
},
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "azure-native_programenrollment_edu_enrollment" "eduEnrollmentResource" {
lifecycle {
create_before_destroy = true
}
resource_group_name = "string"
enrollment_name = "string"
location = "string"
properties = {
domains = [{
domain_names = ["string"]
tenant_id = "string"
}]
}
tags = {
"string" = "string"
}
}
var eduEnrollmentResource = new EduEnrollment("eduEnrollmentResource", EduEnrollmentArgs.builder()
.resourceGroupName("string")
.enrollmentName("string")
.location("string")
.properties(EduEnrollmentPropertiesArgs.builder()
.domains(DomainGroupArgs.builder()
.domainNames("string")
.tenantId("string")
.build())
.build())
.tags(Map.of("string", "string"))
.build());
edu_enrollment_resource = azure_native.programenrollment.EduEnrollment("eduEnrollmentResource",
resource_group_name="string",
enrollment_name="string",
location="string",
properties={
"domains": [{
"domain_names": ["string"],
"tenant_id": "string",
}],
},
tags={
"string": "string",
})
const eduEnrollmentResource = new azure_native.programenrollment.EduEnrollment("eduEnrollmentResource", {
resourceGroupName: "string",
enrollmentName: "string",
location: "string",
properties: {
domains: [{
domainNames: ["string"],
tenantId: "string",
}],
},
tags: {
string: "string",
},
});
type: azure-native:programenrollment:EduEnrollment
properties:
enrollmentName: string
location: string
properties:
domains:
- domainNames:
- string
tenantId: string
resourceGroupName: string
tags:
string: string
EduEnrollment 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 EduEnrollment resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Enrollment
Name string - The name of the edu enrollment
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Program Enrollment. Inputs. Edu Enrollment Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Enrollment
Name string - The name of the edu enrollment
- Location string
- The geo-location where the resource lives
- Properties
Edu
Enrollment Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- enrollment_
name string - The name of the edu enrollment
- location string
- The geo-location where the resource lives
- properties object
- The resource-specific properties for this resource.
- map(string)
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- enrollment
Name String - The name of the edu enrollment
- location String
- The geo-location where the resource lives
- properties
Edu
Enrollment Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- enrollment
Name string - The name of the edu enrollment
- location string
- The geo-location where the resource lives
- properties
Edu
Enrollment Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- enrollment_
name str - The name of the edu enrollment
- location str
- The geo-location where the resource lives
- properties
Edu
Enrollment Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- enrollment
Name String - The name of the edu enrollment
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the EduEnrollment resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Program Enrollment. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ stringversion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DomainGroup, DomainGroupArgs
A group of edu domains scoped to an Entra tenant.- Domain
Names List<string> - The edu domain names in this group.
- Tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- Domain
Names []string - The edu domain names in this group.
- Tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain_
names list(string) - The edu domain names in this group.
- tenant_
id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names List<String> - The edu domain names in this group.
- tenant
Id String - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names string[] - The edu domain names in this group.
- tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain_
names Sequence[str] - The edu domain names in this group.
- tenant_
id str - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names List<String> - The edu domain names in this group.
- tenant
Id String - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
DomainGroupResponse, DomainGroupResponseArgs
A group of edu domains scoped to an Entra tenant.- Domain
Names List<string> - The edu domain names in this group.
- Failure
Reason Pulumi.Azure Native. Program Enrollment. Inputs. Error Detail Response - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- State string
- The assessment state of this domain group.
- Tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- Domain
Names []string - The edu domain names in this group.
- Failure
Reason ErrorDetail Response - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- State string
- The assessment state of this domain group.
- Tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain_
names list(string) - The edu domain names in this group.
- failure_
reason object - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- state string
- The assessment state of this domain group.
- tenant_
id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names List<String> - The edu domain names in this group.
- failure
Reason ErrorDetail Response - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- state String
- The assessment state of this domain group.
- tenant
Id String - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names string[] - The edu domain names in this group.
- failure
Reason ErrorDetail Response - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- state string
- The assessment state of this domain group.
- tenant
Id string - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain_
names Sequence[str] - The edu domain names in this group.
- failure_
reason ErrorDetail Response - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- state str
- The assessment state of this domain group.
- tenant_
id str - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
- domain
Names List<String> - The edu domain names in this group.
- failure
Reason Property Map - Failure detail when state is Failed or ActionRequired. Omitted otherwise.
- state String
- The assessment state of this domain group.
- tenant
Id String - The Entra tenant ID that owns these domains. Defaults to the caller's tenant if omitted.
EduEnrollmentProperties, EduEnrollmentPropertiesArgs
Details of the Program EduEnrollment.- Domains
List<Pulumi.
Azure Native. Program Enrollment. Inputs. Domain Group> - The domain groups associated with this enrollment.
- Domains
[]Domain
Group - The domain groups associated with this enrollment.
- domains list(object)
- The domain groups associated with this enrollment.
- domains
List<Domain
Group> - The domain groups associated with this enrollment.
- domains
Domain
Group[] - The domain groups associated with this enrollment.
- domains
Sequence[Domain
Group] - The domain groups associated with this enrollment.
- domains List<Property Map>
- The domain groups associated with this enrollment.
EduEnrollmentPropertiesResponse, EduEnrollmentPropertiesResponseArgs
Details of the Program EduEnrollment.- Domains
List<Pulumi.
Azure Native. Program Enrollment. Inputs. Domain Group Response> - The domain groups associated with this enrollment.
- Failure
Reason Pulumi.Azure Native. Program Enrollment. Inputs. Error Detail Response - Failure detail when provisioningState is Failed. Omitted otherwise.
- Provisioning
State string - The status of the last operation.
- Domains
[]Domain
Group Response - The domain groups associated with this enrollment.
- Failure
Reason ErrorDetail Response - Failure detail when provisioningState is Failed. Omitted otherwise.
- Provisioning
State string - The status of the last operation.
- domains list(object)
- The domain groups associated with this enrollment.
- failure_
reason object - Failure detail when provisioningState is Failed. Omitted otherwise.
- provisioning_
state string - The status of the last operation.
- domains
List<Domain
Group Response> - The domain groups associated with this enrollment.
- failure
Reason ErrorDetail Response - Failure detail when provisioningState is Failed. Omitted otherwise.
- provisioning
State String - The status of the last operation.
- domains
Domain
Group Response[] - The domain groups associated with this enrollment.
- failure
Reason ErrorDetail Response - Failure detail when provisioningState is Failed. Omitted otherwise.
- provisioning
State string - The status of the last operation.
- domains
Sequence[Domain
Group Response] - The domain groups associated with this enrollment.
- failure_
reason ErrorDetail Response - Failure detail when provisioningState is Failed. Omitted otherwise.
- provisioning_
state str - The status of the last operation.
- domains List<Property Map>
- The domain groups associated with this enrollment.
- failure
Reason Property Map - Failure detail when provisioningState is Failed. Omitted otherwise.
- provisioning
State String - The status of the last operation.
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Program Enrollment. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Program Enrollment. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional_
info list(object) - The error additional info.
- code string
- The error code.
- details list(object)
- The error details.
- message string
- The error message.
- target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at string - The timestamp of resource creation (UTC).
- created_
by string - The identity that created the resource.
- created_
by_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:programenrollment:EduEnrollment default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ProgramEnrollment/eduEnrollments/{enrollmentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Saturday, Jul 18, 2026 by Pulumi