1. Packages
  2. Zscaler Private Access (ZPA)
  3. API Docs
  4. PraApprovalController
Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler

zpa.PraApprovalController

Explore with Pulumi AI

zpa logo
Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler
    Deprecated: zpa.index/praapprovalcontroller.PraApprovalController has been deprecated in favor of zpa.index/praapproval.PRAApproval

    The zpa_pra_approval_controller resource creates a privileged remote access approval in the Zscaler Private Access cloud. This resource allows third-party users and contractors to be able to log in to a Privileged Remote Access (PRA) portal.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.zpa.SegmentGroup;
    import com.pulumi.zpa.SegmentGroupArgs;
    import com.pulumi.zpa.ConnectorGroup;
    import com.pulumi.zpa.ConnectorGroupArgs;
    import com.pulumi.zpa.ServerGroup;
    import com.pulumi.zpa.ServerGroupArgs;
    import com.pulumi.zpa.inputs.ServerGroupAppConnectorGroupArgs;
    import com.pulumi.zpa.ApplicationSegment;
    import com.pulumi.zpa.ApplicationSegmentArgs;
    import com.pulumi.zpa.inputs.ApplicationSegmentServerGroupArgs;
    import com.pulumi.zpa.PRAApproval;
    import com.pulumi.zpa.PRAApprovalArgs;
    import com.pulumi.zpa.inputs.PRAApprovalApplicationArgs;
    import com.pulumi.zpa.inputs.PRAApprovalWorkingHourArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            // ZPA Segment Group resource
            var thisSegmentGroup = new SegmentGroup("thisSegmentGroup", SegmentGroupArgs.builder()
                .description("Example")
                .enabled(true)
                .build());
    
            // ZPA App Connector Group resource
            var thisConnectorGroup = new ConnectorGroup("thisConnectorGroup", ConnectorGroupArgs.builder()
                .description("Example")
                .enabled(true)
                .cityCountry("San Jose, CA")
                .countryCode("US")
                .latitude("37.338")
                .longitude("-121.8863")
                .location("San Jose, CA, US")
                .upgradeDay("SUNDAY")
                .upgradeTimeInSecs("66600")
                .overrideVersionProfile(true)
                .versionProfileId(0)
                .dnsQueryType("IPV4")
                .build());
    
            // ZPA Server Group resource
            var thisServerGroup = new ServerGroup("thisServerGroup", ServerGroupArgs.builder()
                .description("Example")
                .enabled(true)
                .dynamicDiscovery(false)
                .appConnectorGroups(ServerGroupAppConnectorGroupArgs.builder()
                    .ids(thisConnectorGroup.id())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(thisConnectorGroup)
                    .build());
    
            // ZPA Application Segment resource
            var thisApplicationSegment = new ApplicationSegment("thisApplicationSegment", ApplicationSegmentArgs.builder()
                .description("Example")
                .enabled(true)
                .healthReporting("ON_ACCESS")
                .bypassType("NEVER")
                .isCnameEnabled(true)
                .tcpPortRanges(            
                    "8080",
                    "8080")
                .domainNames("server.acme.com")
                .segmentGroupId(thisSegmentGroup.id())
                .serverGroups(ApplicationSegmentServerGroupArgs.builder()
                    .ids(thisServerGroup.id())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(                
                        thisServerGroup,
                        thisSegmentGroup)
                    .build());
    
            // Create PRA Approval Controller
            var thisPRAApproval = new PRAApproval("thisPRAApproval", PRAApprovalArgs.builder()
                .emailIds("jdoe@acme.com")
                .startTime("Tue, 07 Mar 2024 11:05:30 PST")
                .endTime("Tue, 07 Jun 2024 11:05:30 PST")
                .status("FUTURE")
                .applications(PRAApprovalApplicationArgs.builder()
                    .ids(thisApplicationSegment.id())
                    .build())
                .workingHours(PRAApprovalWorkingHourArgs.builder()
                    .days(                
                        "FRI",
                        "MON",
                        "SAT",
                        "SUN",
                        "THU",
                        "TUE",
                        "WED")
                    .startTime("00:10")
                    .startTimeCron("0 0 8 ? * MON,TUE,WED,THU,FRI,SAT")
                    .endTime("09:15")
                    .endTimeCron("0 15 17 ? * MON,TUE,WED,THU,FRI,SAT")
                    .timezone("America/Vancouver")
                    .build())
                .build());
    
        }
    }
    
    resources:
      # ZPA Application Segment resource
      thisApplicationSegment:
        type: zpa:ApplicationSegment
        properties:
          description: Example
          enabled: true
          healthReporting: ON_ACCESS
          bypassType: NEVER
          isCnameEnabled: true
          tcpPortRanges:
            - '8080'
            - '8080'
          domainNames:
            - server.acme.com
          segmentGroupId: ${thisSegmentGroup.id}
          serverGroups:
            - ids:
                - ${thisServerGroup.id}
        options:
          dependson:
            - ${thisServerGroup}
            - ${thisSegmentGroup}
      # ZPA Segment Group resource
      thisSegmentGroup:
        type: zpa:SegmentGroup
        properties:
          description: Example
          enabled: true
      # ZPA Server Group resource
      thisServerGroup:
        type: zpa:ServerGroup
        properties:
          description: Example
          enabled: true
          dynamicDiscovery: false
          appConnectorGroups:
            - ids:
                - ${thisConnectorGroup.id}
        options:
          dependson:
            - ${thisConnectorGroup}
      # ZPA App Connector Group resource
      thisConnectorGroup:
        type: zpa:ConnectorGroup
        properties:
          description: Example
          enabled: true
          cityCountry: San Jose, CA
          countryCode: US
          latitude: '37.338'
          longitude: '-121.8863'
          location: San Jose, CA, US
          upgradeDay: SUNDAY
          upgradeTimeInSecs: '66600'
          overrideVersionProfile: true
          versionProfileId: 0
          dnsQueryType: IPV4
      # Create PRA Approval Controller
      thisPRAApproval:
        type: zpa:PRAApproval
        properties:
          emailIds:
            - jdoe@acme.com
          startTime: Tue, 07 Mar 2024 11:05:30 PST
          endTime: Tue, 07 Jun 2024 11:05:30 PST
          status: FUTURE
          applications:
            - ids:
                - ${thisApplicationSegment.id}
          workingHours:
            - days:
                - FRI
                - MON
                - SAT
                - SUN
                - THU
                - TUE
                - WED
              startTime: 00:10
              startTimeCron: 0 0 8 ? * MON,TUE,WED,THU,FRI,SAT
              endTime: 09:15
              endTimeCron: 0 15 17 ? * MON,TUE,WED,THU,FRI,SAT
              timezone: America/Vancouver
    

    Create PraApprovalController Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PraApprovalController(name: string, args: PraApprovalControllerArgs, opts?: CustomResourceOptions);
    @overload
    def PraApprovalController(resource_name: str,
                              args: PraApprovalControllerArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def PraApprovalController(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              applications: Optional[Sequence[PraApprovalControllerApplicationArgs]] = None,
                              email_ids: Optional[Sequence[str]] = None,
                              end_time: Optional[str] = None,
                              microtenant_id: Optional[str] = None,
                              start_time: Optional[str] = None,
                              status: Optional[str] = None,
                              working_hours: Optional[Sequence[PraApprovalControllerWorkingHourArgs]] = None)
    func NewPraApprovalController(ctx *Context, name string, args PraApprovalControllerArgs, opts ...ResourceOption) (*PraApprovalController, error)
    public PraApprovalController(string name, PraApprovalControllerArgs args, CustomResourceOptions? opts = null)
    public PraApprovalController(String name, PraApprovalControllerArgs args)
    public PraApprovalController(String name, PraApprovalControllerArgs args, CustomResourceOptions options)
    
    type: zpa:PraApprovalController
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PraApprovalControllerArgs
    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 PraApprovalControllerArgs
    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 PraApprovalControllerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PraApprovalControllerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PraApprovalControllerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    PraApprovalController Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The PraApprovalController resource accepts the following input properties:

    Applications List<Zscaler.Zpa.Inputs.PraApprovalControllerApplication>
    EmailIds List<string>
    The email address of the user that you are assigning the privileged approval to
    EndTime string
    The end date that the user no longer has access to the privileged approval
    MicrotenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    StartTime string
    The start date that the user has access to the privileged approval
    Status string
    The status of the privileged approval
    WorkingHours List<Zscaler.Zpa.Inputs.PraApprovalControllerWorkingHour>
    Applications []PraApprovalControllerApplicationArgs
    EmailIds []string
    The email address of the user that you are assigning the privileged approval to
    EndTime string
    The end date that the user no longer has access to the privileged approval
    MicrotenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    StartTime string
    The start date that the user has access to the privileged approval
    Status string
    The status of the privileged approval
    WorkingHours []PraApprovalControllerWorkingHourArgs
    applications List<PraApprovalControllerApplication>
    emailIds List<String>
    The email address of the user that you are assigning the privileged approval to
    endTime String
    The end date that the user no longer has access to the privileged approval
    microtenantId String
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime String
    The start date that the user has access to the privileged approval
    status String
    The status of the privileged approval
    workingHours List<PraApprovalControllerWorkingHour>
    applications PraApprovalControllerApplication[]
    emailIds string[]
    The email address of the user that you are assigning the privileged approval to
    endTime string
    The end date that the user no longer has access to the privileged approval
    microtenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime string
    The start date that the user has access to the privileged approval
    status string
    The status of the privileged approval
    workingHours PraApprovalControllerWorkingHour[]
    applications Sequence[PraApprovalControllerApplicationArgs]
    email_ids Sequence[str]
    The email address of the user that you are assigning the privileged approval to
    end_time str
    The end date that the user no longer has access to the privileged approval
    microtenant_id str
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    start_time str
    The start date that the user has access to the privileged approval
    status str
    The status of the privileged approval
    working_hours Sequence[PraApprovalControllerWorkingHourArgs]
    applications List<Property Map>
    emailIds List<String>
    The email address of the user that you are assigning the privileged approval to
    endTime String
    The end date that the user no longer has access to the privileged approval
    microtenantId String
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime String
    The start date that the user has access to the privileged approval
    status String
    The status of the privileged approval
    workingHours List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PraApprovalController 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing PraApprovalController Resource

    Get an existing PraApprovalController resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PraApprovalControllerState, opts?: CustomResourceOptions): PraApprovalController
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            applications: Optional[Sequence[PraApprovalControllerApplicationArgs]] = None,
            email_ids: Optional[Sequence[str]] = None,
            end_time: Optional[str] = None,
            microtenant_id: Optional[str] = None,
            start_time: Optional[str] = None,
            status: Optional[str] = None,
            working_hours: Optional[Sequence[PraApprovalControllerWorkingHourArgs]] = None) -> PraApprovalController
    func GetPraApprovalController(ctx *Context, name string, id IDInput, state *PraApprovalControllerState, opts ...ResourceOption) (*PraApprovalController, error)
    public static PraApprovalController Get(string name, Input<string> id, PraApprovalControllerState? state, CustomResourceOptions? opts = null)
    public static PraApprovalController get(String name, Output<String> id, PraApprovalControllerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Applications List<Zscaler.Zpa.Inputs.PraApprovalControllerApplication>
    EmailIds List<string>
    The email address of the user that you are assigning the privileged approval to
    EndTime string
    The end date that the user no longer has access to the privileged approval
    MicrotenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    StartTime string
    The start date that the user has access to the privileged approval
    Status string
    The status of the privileged approval
    WorkingHours List<Zscaler.Zpa.Inputs.PraApprovalControllerWorkingHour>
    Applications []PraApprovalControllerApplicationArgs
    EmailIds []string
    The email address of the user that you are assigning the privileged approval to
    EndTime string
    The end date that the user no longer has access to the privileged approval
    MicrotenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    StartTime string
    The start date that the user has access to the privileged approval
    Status string
    The status of the privileged approval
    WorkingHours []PraApprovalControllerWorkingHourArgs
    applications List<PraApprovalControllerApplication>
    emailIds List<String>
    The email address of the user that you are assigning the privileged approval to
    endTime String
    The end date that the user no longer has access to the privileged approval
    microtenantId String
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime String
    The start date that the user has access to the privileged approval
    status String
    The status of the privileged approval
    workingHours List<PraApprovalControllerWorkingHour>
    applications PraApprovalControllerApplication[]
    emailIds string[]
    The email address of the user that you are assigning the privileged approval to
    endTime string
    The end date that the user no longer has access to the privileged approval
    microtenantId string
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime string
    The start date that the user has access to the privileged approval
    status string
    The status of the privileged approval
    workingHours PraApprovalControllerWorkingHour[]
    applications Sequence[PraApprovalControllerApplicationArgs]
    email_ids Sequence[str]
    The email address of the user that you are assigning the privileged approval to
    end_time str
    The end date that the user no longer has access to the privileged approval
    microtenant_id str
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    start_time str
    The start date that the user has access to the privileged approval
    status str
    The status of the privileged approval
    working_hours Sequence[PraApprovalControllerWorkingHourArgs]
    applications List<Property Map>
    emailIds List<String>
    The email address of the user that you are assigning the privileged approval to
    endTime String
    The end date that the user no longer has access to the privileged approval
    microtenantId String
    The unique identifier of the Microtenant for the ZPA tenant. If you are within the Default Microtenant, pass microtenantId as 0 when making requests to retrieve data from the Default Microtenant.
    startTime String
    The start date that the user has access to the privileged approval
    status String
    The status of the privileged approval
    workingHours List<Property Map>

    Supporting Types

    PraApprovalControllerApplication, PraApprovalControllerApplicationArgs

    Ids List<string>
    The unique identifier of the pra application segment
    Ids []string
    The unique identifier of the pra application segment
    ids List<String>
    The unique identifier of the pra application segment
    ids string[]
    The unique identifier of the pra application segment
    ids Sequence[str]
    The unique identifier of the pra application segment
    ids List<String>
    The unique identifier of the pra application segment

    PraApprovalControllerWorkingHour, PraApprovalControllerWorkingHourArgs

    Days List<string>
    The days of the week that you want to enable the privileged approval
    EndTime string
    The end time that the user no longer has access to the privileged approval
    EndTimeCron string
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    StartTime string
    The start time that the user has access to the privileged approval
    StartTimeCron string
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    Timezone string
    The time zone for the time window of a privileged approval
    Days []string
    The days of the week that you want to enable the privileged approval
    EndTime string
    The end time that the user no longer has access to the privileged approval
    EndTimeCron string
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    StartTime string
    The start time that the user has access to the privileged approval
    StartTimeCron string
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    Timezone string
    The time zone for the time window of a privileged approval
    days List<String>
    The days of the week that you want to enable the privileged approval
    endTime String
    The end time that the user no longer has access to the privileged approval
    endTimeCron String
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    startTime String
    The start time that the user has access to the privileged approval
    startTimeCron String
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    timezone String
    The time zone for the time window of a privileged approval
    days string[]
    The days of the week that you want to enable the privileged approval
    endTime string
    The end time that the user no longer has access to the privileged approval
    endTimeCron string
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    startTime string
    The start time that the user has access to the privileged approval
    startTimeCron string
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    timezone string
    The time zone for the time window of a privileged approval
    days Sequence[str]
    The days of the week that you want to enable the privileged approval
    end_time str
    The end time that the user no longer has access to the privileged approval
    end_time_cron str
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    start_time str
    The start time that the user has access to the privileged approval
    start_time_cron str
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    timezone str
    The time zone for the time window of a privileged approval
    days List<String>
    The days of the week that you want to enable the privileged approval
    endTime String
    The end time that the user no longer has access to the privileged approval
    endTimeCron String
    The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]The cron expression provided to configure the privileged approval end time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    startTime String
    The start time that the user has access to the privileged approval
    startTimeCron String
    The cron expression provided to configure the privileged approval start time working hours. The standard cron expression format is [Seconds][Minutes][Hours][Day of the Month][Month][Day of the Week][Year]
    timezone String
    The time zone for the time window of a privileged approval

    Import

    Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language.

    Visit

    zpa_pra_approval_controller can be imported by using <APPROVAL ID> or <APPROVAL NAME> as the import ID.

    For example:

    $ pulumi import zpa:index/praApprovalController:PraApprovalController this <approval_id>
    

    or

    $ pulumi import zpa:index/praApprovalController:PraApprovalController this <approval_name>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    zpa zscaler/pulumi-zpa
    License
    MIT
    Notes
    This Pulumi package is based on the zpa Terraform Provider.
    zpa logo
    Zscaler Private Access v0.0.12 published on Tuesday, Jul 30, 2024 by Zscaler