published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin
Registers a service principal as a Power Platform admin management application. This is a prerequisite for managing environment application administrators. The resource is fully immutable — any change to applicationId triggers a replacement.
Create AdminManagementApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AdminManagementApplication(name: string, args: AdminManagementApplicationArgs, opts?: CustomResourceOptions);@overload
def AdminManagementApplication(resource_name: str,
args: AdminManagementApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AdminManagementApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None)func NewAdminManagementApplication(ctx *Context, name string, args AdminManagementApplicationArgs, opts ...ResourceOption) (*AdminManagementApplication, error)public AdminManagementApplication(string name, AdminManagementApplicationArgs args, CustomResourceOptions? opts = null)
public AdminManagementApplication(String name, AdminManagementApplicationArgs args)
public AdminManagementApplication(String name, AdminManagementApplicationArgs args, CustomResourceOptions options)
type: powerplatform:AdminManagementApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "powerplatform_adminmanagementapplication" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AdminManagementApplicationArgs
- 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 AdminManagementApplicationArgs
- 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 AdminManagementApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AdminManagementApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AdminManagementApplicationArgs
- 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 adminManagementApplicationResource = new Powerplatform.AdminManagementApplication("adminManagementApplicationResource", new()
{
ApplicationId = "string",
});
example, err := powerplatform.NewAdminManagementApplication(ctx, "adminManagementApplicationResource", &powerplatform.AdminManagementApplicationArgs{
ApplicationId: pulumi.String("string"),
})
resource "powerplatform_adminmanagementapplication" "adminManagementApplicationResource" {
application_id = "string"
}
var adminManagementApplicationResource = new AdminManagementApplication("adminManagementApplicationResource", AdminManagementApplicationArgs.builder()
.applicationId("string")
.build());
admin_management_application_resource = powerplatform.AdminManagementApplication("adminManagementApplicationResource", application_id="string")
const adminManagementApplicationResource = new powerplatform.AdminManagementApplication("adminManagementApplicationResource", {applicationId: "string"});
type: powerplatform:AdminManagementApplication
properties:
applicationId: string
AdminManagementApplication 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 AdminManagementApplication resource accepts the following input properties:
- Application
Id string - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- Application
Id string - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- application_
id string - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- application
Id String - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- application
Id string - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- application_
id str - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
- application
Id String - The GUID of the service principal to register as a Power Platform admin management application. Immutable after creation.
Outputs
All input properties are implicitly available as output properties. Additionally, the AdminManagementApplication resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Package Details
- Repository
- powerplatform rpothin/pulumi-powerplatform
- License
- MIT
published on Monday, May 18, 2026 by rpothin