Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin
Power Platform
I want to use the Pulumi Power Platform package (powerplatform) in my project.
## Provider details
- Package: powerplatform
- Version: v0.3.3
- Publisher: rpothin
- Source: pulumi
- Repository: https://github.com/rpothin/pulumi-powerplatform
## Documentation
The Pulumi Cloud Registry API serves canonical, up-to-date docs for this package — including private packages and every published version. Send the "Accept: text/markdown" header for clean readable content, or "application/json" for structured data.
Start at the navigation tree, which cross-links to the readme, installation guide, and per-resource docs URL template:
- https://api.pulumi.com/api/registry/packages/pulumi/rpothin/powerplatform/versions/latest/nav
Returns a summary by default. The full tree can be hundreds of kB for large providers, so prefer targeted search: append "?q=<query>&depth=full" to filter by resource/function title or token (for example "?q=bucket&depth=full"). Only request the full nav without a query if you actually need to enumerate every resource.
Other endpoints:
- Overview and getting started: https://api.pulumi.com/api/registry/packages/pulumi/rpothin/powerplatform/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/rpothin/powerplatform/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/rpothin/powerplatform/versions/latest/docs/{token}?lang={lang}
Replace {token} with the percent-encoded token from the nav response (for example aws:s3/bucket:Bucket).
Replace {lang} with typescript, python, go, csharp, java, or yaml.
Fetch the installation endpoint above for the correct setup steps — install instructions vary between native providers, bridged Terraform providers, and component packages.
Help me get started using this provider. Show me a complete Pulumi program that provisions a common resource, including all necessary configuration and imports.
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin
The Power Platform provider for Pulumi allows you to manage Microsoft Power Platform resources using infrastructure as code.
Power Platform must be configured with Azure AD credentials to deploy and manage resources. See Installation & Configuration for instructions.
Overview
The provider supports:
- Environment — create, update, and delete Power Platform environments
- Environment Group — organise environments into groups
- Environment Settings — govern per-environment settings (audit, logging, etc.)
- Environment Backup — manage environment backups
- Managed Environment — enable/disable managed-environment governance
- DLP Policy — configure data loss prevention policies
- Billing Policy — manage pay-as-you-go billing policies
- Role Assignment — assign security roles to principals
- ISV Contract — manage ISV contract resources
Data-source functions are available for listing environments, connectors, apps, and flows.
Example
import pulumi
import rpothin_powerplatform as pp
env = pp.Environment(
"dev",
display_name="Development",
location="unitedstates",
environment_type="Sandbox",
)
pulumi.export("envId", env.id)
import * as pp from "@rpothin/powerplatform";
const env = new pp.Environment("dev", {
displayName: "Development",
location: "unitedstates",
environmentType: "Sandbox",
});
export const envId = env.id;
package main
import (
pp "github.com/rpothin/pulumi-powerplatform/sdk/go/powerplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
env, err := pp.NewEnvironment(ctx, "dev", &pp.EnvironmentArgs{
DisplayName: pulumi.String("Development"),
Location: pulumi.String("unitedstates"),
EnvironmentType: pulumi.String("Sandbox"),
})
if err != nil {
return err
}
ctx.Export("envId", env.ID())
return nil
})
}
using Pulumi;
using Pulumi.Powerplatform;
return await Deployment.RunAsync(() =>
{
var env = new Environment("dev", new EnvironmentArgs
{
DisplayName = "Development",
Location = "unitedstates",
EnvironmentType = "Sandbox",
});
return new Dictionary<string, object?>
{
["envId"] = env.Id,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import io.github.rpothin.powerplatform.Environment;
import io.github.rpothin.powerplatform.EnvironmentArgs;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var env = new Environment("dev", EnvironmentArgs.builder()
.displayName("Development")
.location("unitedstates")
.environmentType("Sandbox")
.build());
ctx.export("envId", env.id());
}
}
name: my-powerplatform-stack
runtime: yaml
resources:
dev:
type: powerplatform:index:Environment
properties:
displayName: Development
location: unitedstates
environmentType: Sandbox
outputs:
envId: ${dev.id}
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin