Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
Use the zpa_managed_browser_profile data source to get information about managed browser protection profiles within the Zscaler Private Access cloud. This data source can be used when configuring zpa.PolicyAccessRuleV2 or zpa.PolicyAccessIsolationRuleV2 where the object_type is CHROME_POSTURE_PROFILE
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@bdzscaler/pulumi-zpa";
const _this = zpa.getManagedBrowserProfile({
name: "Profile01",
});
import pulumi
import pulumi_zpa as zpa
this = zpa.get_managed_browser_profile(name="Profile01")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := zpa.GetManagedBrowserProfile(ctx, &zpa.GetManagedBrowserProfileArgs{
Name: pulumi.StringRef("Profile01"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zpa = Pulumi.Zpa;
return await Deployment.RunAsync(() =>
{
var @this = Zpa.GetManagedBrowserProfile.Invoke(new()
{
Name = "Profile01",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zpa.ZpaFunctions;
import com.pulumi.zpa.inputs.GetManagedBrowserProfileArgs;
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) {
final var this = ZpaFunctions.getManagedBrowserProfile(GetManagedBrowserProfileArgs.builder()
.name("Profile01")
.build());
}
}
variables:
this:
fn::invoke:
function: zpa:getManagedBrowserProfile
arguments:
name: Profile01
Using getManagedBrowserProfile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagedBrowserProfile(args: GetManagedBrowserProfileArgs, opts?: InvokeOptions): Promise<GetManagedBrowserProfileResult>
function getManagedBrowserProfileOutput(args: GetManagedBrowserProfileOutputArgs, opts?: InvokeOptions): Output<GetManagedBrowserProfileResult>def get_managed_browser_profile(id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagedBrowserProfileResult
def get_managed_browser_profile_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagedBrowserProfileResult]func GetManagedBrowserProfile(ctx *Context, args *GetManagedBrowserProfileArgs, opts ...InvokeOption) (*GetManagedBrowserProfileResult, error)
func GetManagedBrowserProfileOutput(ctx *Context, args *GetManagedBrowserProfileOutputArgs, opts ...InvokeOption) GetManagedBrowserProfileResultOutput> Note: This function is named GetManagedBrowserProfile in the Go SDK.
public static class GetManagedBrowserProfile
{
public static Task<GetManagedBrowserProfileResult> InvokeAsync(GetManagedBrowserProfileArgs args, InvokeOptions? opts = null)
public static Output<GetManagedBrowserProfileResult> Invoke(GetManagedBrowserProfileInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetManagedBrowserProfileResult> getManagedBrowserProfile(GetManagedBrowserProfileArgs args, InvokeOptions options)
public static Output<GetManagedBrowserProfileResult> getManagedBrowserProfile(GetManagedBrowserProfileArgs args, InvokeOptions options)
fn::invoke:
function: zpa:index/getManagedBrowserProfile:getManagedBrowserProfile
arguments:
# arguments dictionaryThe following arguments are supported:
getManagedBrowserProfile Result
The following output properties are available:
- Browser
Type string - Chrome
Posture List<zscaler.Profiles Pulumi Package. Zpa. Outputs. Get Managed Browser Profile Chrome Posture Profile> - Creation
Time string - Customer
Id string - Description string
- Microtenant
Id string - Microtenant
Name string - Modified
By string - Modified
Time string - Id string
- Name string
- Browser
Type string - Chrome
Posture []GetProfiles Managed Browser Profile Chrome Posture Profile - Creation
Time string - Customer
Id string - Description string
- Microtenant
Id string - Microtenant
Name string - Modified
By string - Modified
Time string - Id string
- Name string
- browser
Type String - chrome
Posture List<GetProfiles Managed Browser Profile Chrome Posture Profile> - creation
Time String - customer
Id String - description String
- microtenant
Id String - microtenant
Name String - modified
By String - modified
Time String - id String
- name String
- browser
Type string - chrome
Posture GetProfiles Managed Browser Profile Chrome Posture Profile[] - creation
Time string - customer
Id string - description string
- microtenant
Id string - microtenant
Name string - modified
By string - modified
Time string - id string
- name string
- browser
Type String - chrome
Posture List<Property Map>Profiles - creation
Time String - customer
Id String - description String
- microtenant
Id String - microtenant
Name String - modified
By String - modified
Time String - id String
- name String
Supporting Types
GetManagedBrowserProfileChromePostureProfile
- Browser
Type string - Creation
Time string - Crowd
Strike boolAgent - Id string
- Modified
By string - Modified
Time string
- Browser
Type string - Creation
Time string - Crowd
Strike boolAgent - Id string
- Modified
By string - Modified
Time string
- browser
Type String - creation
Time String - crowd
Strike BooleanAgent - id String
- modified
By String - modified
Time String
- browser
Type string - creation
Time string - crowd
Strike booleanAgent - id string
- modified
By string - modified
Time string
- browser_
type str - creation_
time str - crowd_
strike_ boolagent - id str
- modified_
by str - modified_
time str
- browser
Type String - creation
Time String - crowd
Strike BooleanAgent - id String
- modified
By String - modified
Time String
Package Details
- Repository
- zpa zscaler/pulumi-zpa
- License
- MIT
- Notes
- This Pulumi package is based on the
zpaTerraform Provider.
Zscaler Private Access v1.0.3 published on Wednesday, Jan 21, 2026 by Zscaler
