Viewing docs for Zscaler Private Access v1.0.3
published on Wednesday, Jan 21, 2026 by Zscaler
published on Wednesday, Jan 21, 2026 by Zscaler
Zscaler Private Access (ZPA)
I want to use the Pulumi Zscaler Private Access package (zpa) in my project.
## Provider details
- Package: zpa
- Version: v1.0.3
- Publisher: Zscaler
- Source: pulumi
- Repository: https://github.com/zscaler/pulumi-zpa
## 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/zscaler/zpa/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/zscaler/zpa/versions/latest/readme
- Installation and configuration: https://api.pulumi.com/api/registry/packages/pulumi/zscaler/zpa/versions/latest/installation
- Per-resource/function docs: https://api.pulumi.com/api/registry/packages/pulumi/zscaler/zpa/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 Zscaler Private Access v1.0.3
published on Wednesday, Jan 21, 2026 by Zscaler
published on Wednesday, Jan 21, 2026 by Zscaler
The Zscaler Private Access (ZPA) provider for Pulumi can be used to provision any of the cloud resources available in Zscaler Private Access. The Zscaler Private Access (ZPA) provider must be configured with credentials to deploy and update resources in the ZPA Cloud.
Example
import * as zpa from "@bdzscaler/pulumi-zpa";
const segmentGroup = new zpa.ZPASegmentGroup("segment-group", {
name: "Pulumi Segment Group",
description: "Pulumi Segment Group",
enabled: true,
policyMigrated: true,
tcpKeepAliveEnabled: "1",
});
import zscaler_pulumi_zpa as zpa
segmentGroup = zpa.ZPASegmentGroup("segment-group",
name="Pulumi-Segment-Group",
description="Pulumi-Segment-Group",
enabled=True,
policy_migrated=True,
tcp_keep_alive_enabled="1"
)
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
zpa "github.com/zscaler/pulumi-zpa/sdk/go/zpa"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
segmentGroup, err := zpa.NewZPASegmentGroup(ctx, "segment-group-example", &zpa.ZPASegmentGroupArgs{
Name: pulumi.String("Pulumi Segment Group"),
Description: pulumi.String("Pulumi Segment Group"),
Enabled: pulumi.Bool(true),
PolicyMigrated: pulumi.Bool(true),
TcpKeepAliveEnabled: pulumi.String("1"),
})
if err != nil {
return fmt.Errorf("error creating segment group: %v", err)
}
ctx.Export("segment_group", segmentGroup.Name)
return nil
})
}
using Pulumi;
using zscaler.PulumiPackage.Zpa;
await Deployment.RunAsync(() =>
{
var group = new Zpa.ZPASegmentGroup("segment-group-example", new()
{
Name = "Pulumi Segment Group",
Description = "Pulumi Segment Group",
Enabled = true,
TcpKeepAliveEnabled = "1",
});
});
Viewing docs for Zscaler Private Access v1.0.3
published on Wednesday, Jan 21, 2026 by Zscaler
published on Wednesday, Jan 21, 2026 by Zscaler
