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

zpa.PolicyIsolationRuleV2

Explore with Pulumi AI

Deprecated: zpa.index/policyisolationrulev2.PolicyIsolationRuleV2 has been deprecated in favor of zpa.index/policyaccessisolationrulev2.PolicyAccessIsolationRuleV2

The zpa_policy_isolation_rule_v2 resource creates and manages policy access isolation rule in the Zscaler Private Access cloud using a new v2 API endpoint.

⚠️ NOTE: This resource is recommended if your configuration requires the association of more than 1000 resource criteria per rule.

⚠️ WARNING:: The attribute rule_order is now deprecated in favor of the new resource policy_access_rule_reorder

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@bdzscaler/pulumi-zpa";
import * as zpa from "@pulumi/zpa";

const thisIsolationProfile = zpa.getIsolationProfile({
    name: "zpa_isolation_profile",
});
const thisIdPController = zpa.getIdPController({
    name: "Idp_Name",
});
const emailUserSso = zpa.getSAMLAttribute({
    name: "Email_Users",
    idpName: "Idp_Name",
});
const groupUser = zpa.getSAMLAttribute({
    name: "GroupName_Users",
    idpName: "Idp_Name",
});
const a000 = zpa.getSCIMGroups({
    name: "A000",
    idpName: "Idp_Name",
});
const b000 = zpa.getSCIMGroups({
    name: "B000",
    idpName: "Idp_Name",
});
// Create Policy Access Isolation Rule V2
const thisPolicyAccessIsolationRuleV2 = new zpa.PolicyAccessIsolationRuleV2("thisPolicyAccessIsolationRuleV2", {
    description: "Example",
    action: "ISOLATE",
    zpnIsolationProfileId: thisIsolationProfile.then(thisIsolationProfile => thisIsolationProfile.id),
    conditions: [
        {
            operator: "OR",
            operands: [{
                objectType: "CLIENT_TYPE",
                values: ["zpn_client_type_exporter"],
            }],
        },
        {
            operator: "OR",
            operands: [
                {
                    objectType: "SAML",
                    entryValues: [
                        {
                            rhs: "user1@acme.com",
                            lhs: emailUserSso.then(emailUserSso => emailUserSso.id),
                        },
                        {
                            rhs: "A000",
                            lhs: groupUser.then(groupUser => groupUser.id),
                        },
                    ],
                },
                {
                    objectType: "SCIM_GROUP",
                    entryValues: [
                        {
                            rhs: a000.then(a000 => a000.id),
                            lhs: thisIdPController.then(thisIdPController => thisIdPController.id),
                        },
                        {
                            rhs: b000.then(b000 => b000.id),
                            lhs: thisIdPController.then(thisIdPController => thisIdPController.id),
                        },
                    ],
                },
            ],
        },
    ],
});
Copy
import pulumi
import pulumi_zpa as zpa
import zscaler_pulumi_zpa as zpa

this_isolation_profile = zpa.get_isolation_profile(name="zpa_isolation_profile")
this_id_p_controller = zpa.get_id_p_controller(name="Idp_Name")
email_user_sso = zpa.get_saml_attribute(name="Email_Users",
    idp_name="Idp_Name")
group_user = zpa.get_saml_attribute(name="GroupName_Users",
    idp_name="Idp_Name")
a000 = zpa.get_scim_groups(name="A000",
    idp_name="Idp_Name")
b000 = zpa.get_scim_groups(name="B000",
    idp_name="Idp_Name")
# Create Policy Access Isolation Rule V2
this_policy_access_isolation_rule_v2 = zpa.PolicyAccessIsolationRuleV2("thisPolicyAccessIsolationRuleV2",
    description="Example",
    action="ISOLATE",
    zpn_isolation_profile_id=this_isolation_profile.id,
    conditions=[
        zpa.PolicyAccessIsolationRuleV2ConditionArgs(
            operator="OR",
            operands=[zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs(
                object_type="CLIENT_TYPE",
                values=["zpn_client_type_exporter"],
            )],
        ),
        zpa.PolicyAccessIsolationRuleV2ConditionArgs(
            operator="OR",
            operands=[
                zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs(
                    object_type="SAML",
                    entry_values=[
                        zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs(
                            rhs="user1@acme.com",
                            lhs=email_user_sso.id,
                        ),
                        zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs(
                            rhs="A000",
                            lhs=group_user.id,
                        ),
                    ],
                ),
                zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs(
                    object_type="SCIM_GROUP",
                    entry_values=[
                        zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs(
                            rhs=a000.id,
                            lhs=this_id_p_controller.id,
                        ),
                        zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs(
                            rhs=b000.id,
                            lhs=this_id_p_controller.id,
                        ),
                    ],
                ),
            ],
        ),
    ])
Copy
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 {
		thisIsolationProfile, err := zpa.GetIsolationProfile(ctx, &zpa.GetIsolationProfileArgs{
			Name: pulumi.StringRef("zpa_isolation_profile"),
		}, nil)
		if err != nil {
			return err
		}
		thisIdPController, err := zpa.GetIdPController(ctx, &zpa.GetIdPControllerArgs{
			Name: pulumi.StringRef("Idp_Name"),
		}, nil)
		if err != nil {
			return err
		}
		emailUserSso, err := zpa.GetSAMLAttribute(ctx, &zpa.GetSAMLAttributeArgs{
			Name:    pulumi.StringRef("Email_Users"),
			IdpName: pulumi.StringRef("Idp_Name"),
		}, nil)
		if err != nil {
			return err
		}
		groupUser, err := zpa.GetSAMLAttribute(ctx, &zpa.GetSAMLAttributeArgs{
			Name:    pulumi.StringRef("GroupName_Users"),
			IdpName: pulumi.StringRef("Idp_Name"),
		}, nil)
		if err != nil {
			return err
		}
		a000, err := zpa.GetSCIMGroups(ctx, &zpa.GetSCIMGroupsArgs{
			Name:    pulumi.StringRef("A000"),
			IdpName: pulumi.StringRef("Idp_Name"),
		}, nil)
		if err != nil {
			return err
		}
		b000, err := zpa.GetSCIMGroups(ctx, &zpa.GetSCIMGroupsArgs{
			Name:    pulumi.StringRef("B000"),
			IdpName: pulumi.StringRef("Idp_Name"),
		}, nil)
		if err != nil {
			return err
		}
		// Create Policy Access Isolation Rule V2
		_, err = zpa.NewPolicyAccessIsolationRuleV2(ctx, "thisPolicyAccessIsolationRuleV2", &zpa.PolicyAccessIsolationRuleV2Args{
			Description:           pulumi.String("Example"),
			Action:                pulumi.String("ISOLATE"),
			ZpnIsolationProfileId: pulumi.String(thisIsolationProfile.Id),
			Conditions: zpa.PolicyAccessIsolationRuleV2ConditionArray{
				&zpa.PolicyAccessIsolationRuleV2ConditionArgs{
					Operator: pulumi.String("OR"),
					Operands: zpa.PolicyAccessIsolationRuleV2ConditionOperandArray{
						&zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs{
							ObjectType: pulumi.String("CLIENT_TYPE"),
							Values: pulumi.StringArray{
								pulumi.String("zpn_client_type_exporter"),
							},
						},
					},
				},
				&zpa.PolicyAccessIsolationRuleV2ConditionArgs{
					Operator: pulumi.String("OR"),
					Operands: zpa.PolicyAccessIsolationRuleV2ConditionOperandArray{
						&zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs{
							ObjectType: pulumi.String("SAML"),
							EntryValues: zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArray{
								&zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs{
									Rhs: pulumi.String("user1@acme.com"),
									Lhs: pulumi.String(emailUserSso.Id),
								},
								&zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs{
									Rhs: pulumi.String("A000"),
									Lhs: pulumi.String(groupUser.Id),
								},
							},
						},
						&zpa.PolicyAccessIsolationRuleV2ConditionOperandArgs{
							ObjectType: pulumi.String("SCIM_GROUP"),
							EntryValues: zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArray{
								&zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs{
									Rhs: pulumi.String(a000.Id),
									Lhs: pulumi.String(thisIdPController.Id),
								},
								&zpa.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs{
									Rhs: pulumi.String(b000.Id),
									Lhs: pulumi.String(thisIdPController.Id),
								},
							},
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zpa = Pulumi.Zpa;
using Zpa = Zscaler.Zpa;

return await Deployment.RunAsync(() => 
{
    var thisIsolationProfile = Zpa.GetIsolationProfile.Invoke(new()
    {
        Name = "zpa_isolation_profile",
    });

    var thisIdPController = Zpa.GetIdPController.Invoke(new()
    {
        Name = "Idp_Name",
    });

    var emailUserSso = Zpa.GetSAMLAttribute.Invoke(new()
    {
        Name = "Email_Users",
        IdpName = "Idp_Name",
    });

    var groupUser = Zpa.GetSAMLAttribute.Invoke(new()
    {
        Name = "GroupName_Users",
        IdpName = "Idp_Name",
    });

    var a000 = Zpa.GetSCIMGroups.Invoke(new()
    {
        Name = "A000",
        IdpName = "Idp_Name",
    });

    var b000 = Zpa.GetSCIMGroups.Invoke(new()
    {
        Name = "B000",
        IdpName = "Idp_Name",
    });

    // Create Policy Access Isolation Rule V2
    var thisPolicyAccessIsolationRuleV2 = new Zpa.PolicyAccessIsolationRuleV2("thisPolicyAccessIsolationRuleV2", new()
    {
        Description = "Example",
        Action = "ISOLATE",
        ZpnIsolationProfileId = thisIsolationProfile.Apply(getIsolationProfileResult => getIsolationProfileResult.Id),
        Conditions = new[]
        {
            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionArgs
            {
                Operator = "OR",
                Operands = new[]
                {
                    new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandArgs
                    {
                        ObjectType = "CLIENT_TYPE",
                        Values = new[]
                        {
                            "zpn_client_type_exporter",
                        },
                    },
                },
            },
            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionArgs
            {
                Operator = "OR",
                Operands = new[]
                {
                    new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandArgs
                    {
                        ObjectType = "SAML",
                        EntryValues = new[]
                        {
                            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs
                            {
                                Rhs = "user1@acme.com",
                                Lhs = emailUserSso.Apply(getSAMLAttributeResult => getSAMLAttributeResult.Id),
                            },
                            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs
                            {
                                Rhs = "A000",
                                Lhs = groupUser.Apply(getSAMLAttributeResult => getSAMLAttributeResult.Id),
                            },
                        },
                    },
                    new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandArgs
                    {
                        ObjectType = "SCIM_GROUP",
                        EntryValues = new[]
                        {
                            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs
                            {
                                Rhs = a000.Apply(getSCIMGroupsResult => getSCIMGroupsResult.Id),
                                Lhs = thisIdPController.Apply(getIdPControllerResult => getIdPControllerResult.Id),
                            },
                            new Zpa.Inputs.PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs
                            {
                                Rhs = b000.Apply(getSCIMGroupsResult => getSCIMGroupsResult.Id),
                                Lhs = thisIdPController.Apply(getIdPControllerResult => getIdPControllerResult.Id),
                            },
                        },
                    },
                },
            },
        },
    });

});
Copy
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.GetIsolationProfileArgs;
import com.pulumi.zpa.inputs.GetIdPControllerArgs;
import com.pulumi.zpa.inputs.GetSAMLAttributeArgs;
import com.pulumi.zpa.inputs.GetSCIMGroupsArgs;
import com.pulumi.zpa.PolicyAccessIsolationRuleV2;
import com.pulumi.zpa.PolicyAccessIsolationRuleV2Args;
import com.pulumi.zpa.inputs.PolicyAccessIsolationRuleV2ConditionArgs;
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 thisIsolationProfile = ZpaFunctions.getIsolationProfile(GetIsolationProfileArgs.builder()
            .name("zpa_isolation_profile")
            .build());

        final var thisIdPController = ZpaFunctions.getIdPController(GetIdPControllerArgs.builder()
            .name("Idp_Name")
            .build());

        final var emailUserSso = ZpaFunctions.getSAMLAttribute(GetSAMLAttributeArgs.builder()
            .name("Email_Users")
            .idpName("Idp_Name")
            .build());

        final var groupUser = ZpaFunctions.getSAMLAttribute(GetSAMLAttributeArgs.builder()
            .name("GroupName_Users")
            .idpName("Idp_Name")
            .build());

        final var a000 = ZpaFunctions.getSCIMGroups(GetSCIMGroupsArgs.builder()
            .name("A000")
            .idpName("Idp_Name")
            .build());

        final var b000 = ZpaFunctions.getSCIMGroups(GetSCIMGroupsArgs.builder()
            .name("B000")
            .idpName("Idp_Name")
            .build());

        // Create Policy Access Isolation Rule V2
        var thisPolicyAccessIsolationRuleV2 = new PolicyAccessIsolationRuleV2("thisPolicyAccessIsolationRuleV2", PolicyAccessIsolationRuleV2Args.builder()
            .description("Example")
            .action("ISOLATE")
            .zpnIsolationProfileId(thisIsolationProfile.applyValue(getIsolationProfileResult -> getIsolationProfileResult.id()))
            .conditions(            
                PolicyAccessIsolationRuleV2ConditionArgs.builder()
                    .operator("OR")
                    .operands(PolicyAccessIsolationRuleV2ConditionOperandArgs.builder()
                        .objectType("CLIENT_TYPE")
                        .values("zpn_client_type_exporter")
                        .build())
                    .build(),
                PolicyAccessIsolationRuleV2ConditionArgs.builder()
                    .operator("OR")
                    .operands(                    
                        PolicyAccessIsolationRuleV2ConditionOperandArgs.builder()
                            .objectType("SAML")
                            .entryValues(                            
                                PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs.builder()
                                    .rhs("user1@acme.com")
                                    .lhs(emailUserSso.applyValue(getSAMLAttributeResult -> getSAMLAttributeResult.id()))
                                    .build(),
                                PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs.builder()
                                    .rhs("A000")
                                    .lhs(groupUser.applyValue(getSAMLAttributeResult -> getSAMLAttributeResult.id()))
                                    .build())
                            .build(),
                        PolicyAccessIsolationRuleV2ConditionOperandArgs.builder()
                            .objectType("SCIM_GROUP")
                            .entryValues(                            
                                PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs.builder()
                                    .rhs(a000.applyValue(getSCIMGroupsResult -> getSCIMGroupsResult.id()))
                                    .lhs(thisIdPController.applyValue(getIdPControllerResult -> getIdPControllerResult.id()))
                                    .build(),
                                PolicyAccessIsolationRuleV2ConditionOperandEntryValueArgs.builder()
                                    .rhs(b000.applyValue(getSCIMGroupsResult -> getSCIMGroupsResult.id()))
                                    .lhs(thisIdPController.applyValue(getIdPControllerResult -> getIdPControllerResult.id()))
                                    .build())
                            .build())
                    .build())
            .build());

    }
}
Copy
resources:
  # Create Policy Access Isolation Rule V2
  thisPolicyAccessIsolationRuleV2:
    type: zpa:PolicyAccessIsolationRuleV2
    properties:
      description: Example
      action: ISOLATE
      zpnIsolationProfileId: ${thisIsolationProfile.id}
      conditions:
        - operator: OR
          operands:
            - objectType: CLIENT_TYPE
              values:
                - zpn_client_type_exporter
        - operator: OR
          operands:
            - objectType: SAML
              entryValues:
                - rhs: user1@acme.com
                  lhs: ${emailUserSso.id}
                - rhs: A000
                  lhs: ${groupUser.id}
            - objectType: SCIM_GROUP
              entryValues:
                - rhs: ${a000.id}
                  lhs: ${thisIdPController.id}
                - rhs: ${b000.id}
                  lhs: ${thisIdPController.id}
variables:
  thisIsolationProfile:
    fn::invoke:
      Function: zpa:getIsolationProfile
      Arguments:
        name: zpa_isolation_profile
  thisIdPController:
    fn::invoke:
      Function: zpa:getIdPController
      Arguments:
        name: Idp_Name
  emailUserSso:
    fn::invoke:
      Function: zpa:getSAMLAttribute
      Arguments:
        name: Email_Users
        idpName: Idp_Name
  groupUser:
    fn::invoke:
      Function: zpa:getSAMLAttribute
      Arguments:
        name: GroupName_Users
        idpName: Idp_Name
  a000:
    fn::invoke:
      Function: zpa:getSCIMGroups
      Arguments:
        name: A000
        idpName: Idp_Name
  b000:
    fn::invoke:
      Function: zpa:getSCIMGroups
      Arguments:
        name: B000
        idpName: Idp_Name
Copy

LHS and RHS Values

Object TypeLHSRHSVALUES
APPapplication_segment_id
APP_GROUPsegment_group_id
CLIENT_TYPEzpn_client_type_zappl, zpn_client_type_exporter, zpn_client_type_browser_isolation, zpn_client_type_ip_anchoring, zpn_client_type_edge_connector, zpn_client_type_branch_connector, zpn_client_type_zapp_partner, zpn_client_type_zapp
EDGE_CONNECTOR_GROUP<edge_connector_id>
MACHINE_GRPmachine_group_id
SAMLsaml_attribute_idattribute_value_to_match
SCIMscim_attribute_idattribute_value_to_match
SCIM_GROUPscim_group_attribute_idattribute_value_to_match
PLATFORMmac, ios, windows, android, linux"true" / "false"
POSTUREposture_udid"true" / "false"

Create PolicyIsolationRuleV2 Resource

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

Constructor syntax

new PolicyIsolationRuleV2(name: string, args?: PolicyIsolationRuleV2Args, opts?: CustomResourceOptions);
@overload
def PolicyIsolationRuleV2(resource_name: str,
                          args: Optional[PolicyIsolationRuleV2Args] = None,
                          opts: Optional[ResourceOptions] = None)

@overload
def PolicyIsolationRuleV2(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          action: Optional[str] = None,
                          conditions: Optional[Sequence[PolicyIsolationRuleV2ConditionArgs]] = None,
                          description: Optional[str] = None,
                          microtenant_id: Optional[str] = None,
                          name: Optional[str] = None,
                          zpn_isolation_profile_id: Optional[str] = None)
func NewPolicyIsolationRuleV2(ctx *Context, name string, args *PolicyIsolationRuleV2Args, opts ...ResourceOption) (*PolicyIsolationRuleV2, error)
public PolicyIsolationRuleV2(string name, PolicyIsolationRuleV2Args? args = null, CustomResourceOptions? opts = null)
public PolicyIsolationRuleV2(String name, PolicyIsolationRuleV2Args args)
public PolicyIsolationRuleV2(String name, PolicyIsolationRuleV2Args args, CustomResourceOptions options)
type: zpa:PolicyIsolationRuleV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args PolicyIsolationRuleV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args PolicyIsolationRuleV2Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args PolicyIsolationRuleV2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args PolicyIsolationRuleV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PolicyIsolationRuleV2Args
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

PolicyIsolationRuleV2 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 PolicyIsolationRuleV2 resource accepts the following input properties:

Action string
This is for providing the rule action. Supported values: ISOLATE Default.
Conditions List<Zscaler.Zpa.Inputs.PolicyIsolationRuleV2Condition>
This is for proviidng the set of conditions for the policy.
Description string
This is the description of the access policy rule.
MicrotenantId string
Name string
This is the name of the policy rule.
ZpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
Action string
This is for providing the rule action. Supported values: ISOLATE Default.
Conditions []PolicyIsolationRuleV2ConditionArgs
This is for proviidng the set of conditions for the policy.
Description string
This is the description of the access policy rule.
MicrotenantId string
Name string
This is the name of the policy rule.
ZpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action String
This is for providing the rule action. Supported values: ISOLATE Default.
conditions List<PolicyIsolationRuleV2Condition>
This is for proviidng the set of conditions for the policy.
description String
This is the description of the access policy rule.
microtenantId String
name String
This is the name of the policy rule.
zpnIsolationProfileId String
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action string
This is for providing the rule action. Supported values: ISOLATE Default.
conditions PolicyIsolationRuleV2Condition[]
This is for proviidng the set of conditions for the policy.
description string
This is the description of the access policy rule.
microtenantId string
name string
This is the name of the policy rule.
zpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action str
This is for providing the rule action. Supported values: ISOLATE Default.
conditions Sequence[PolicyIsolationRuleV2ConditionArgs]
This is for proviidng the set of conditions for the policy.
description str
This is the description of the access policy rule.
microtenant_id str
name str
This is the name of the policy rule.
zpn_isolation_profile_id str
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action String
This is for providing the rule action. Supported values: ISOLATE Default.
conditions List<Property Map>
This is for proviidng the set of conditions for the policy.
description String
This is the description of the access policy rule.
microtenantId String
name String
This is the name of the policy rule.
zpnIsolationProfileId String
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id

Outputs

All input properties are implicitly available as output properties. Additionally, the PolicyIsolationRuleV2 resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
PolicySetId string
Id string
The provider-assigned unique ID for this managed resource.
PolicySetId string
id String
The provider-assigned unique ID for this managed resource.
policySetId String
id string
The provider-assigned unique ID for this managed resource.
policySetId string
id str
The provider-assigned unique ID for this managed resource.
policy_set_id str
id String
The provider-assigned unique ID for this managed resource.
policySetId String

Look up Existing PolicyIsolationRuleV2 Resource

Get an existing PolicyIsolationRuleV2 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?: PolicyIsolationRuleV2State, opts?: CustomResourceOptions): PolicyIsolationRuleV2
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        conditions: Optional[Sequence[PolicyIsolationRuleV2ConditionArgs]] = None,
        description: Optional[str] = None,
        microtenant_id: Optional[str] = None,
        name: Optional[str] = None,
        policy_set_id: Optional[str] = None,
        zpn_isolation_profile_id: Optional[str] = None) -> PolicyIsolationRuleV2
func GetPolicyIsolationRuleV2(ctx *Context, name string, id IDInput, state *PolicyIsolationRuleV2State, opts ...ResourceOption) (*PolicyIsolationRuleV2, error)
public static PolicyIsolationRuleV2 Get(string name, Input<string> id, PolicyIsolationRuleV2State? state, CustomResourceOptions? opts = null)
public static PolicyIsolationRuleV2 get(String name, Output<String> id, PolicyIsolationRuleV2State state, CustomResourceOptions options)
resources:  _:    type: zpa:PolicyIsolationRuleV2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Action string
This is for providing the rule action. Supported values: ISOLATE Default.
Conditions List<Zscaler.Zpa.Inputs.PolicyIsolationRuleV2Condition>
This is for proviidng the set of conditions for the policy.
Description string
This is the description of the access policy rule.
MicrotenantId string
Name string
This is the name of the policy rule.
PolicySetId string
ZpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
Action string
This is for providing the rule action. Supported values: ISOLATE Default.
Conditions []PolicyIsolationRuleV2ConditionArgs
This is for proviidng the set of conditions for the policy.
Description string
This is the description of the access policy rule.
MicrotenantId string
Name string
This is the name of the policy rule.
PolicySetId string
ZpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action String
This is for providing the rule action. Supported values: ISOLATE Default.
conditions List<PolicyIsolationRuleV2Condition>
This is for proviidng the set of conditions for the policy.
description String
This is the description of the access policy rule.
microtenantId String
name String
This is the name of the policy rule.
policySetId String
zpnIsolationProfileId String
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action string
This is for providing the rule action. Supported values: ISOLATE Default.
conditions PolicyIsolationRuleV2Condition[]
This is for proviidng the set of conditions for the policy.
description string
This is the description of the access policy rule.
microtenantId string
name string
This is the name of the policy rule.
policySetId string
zpnIsolationProfileId string
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action str
This is for providing the rule action. Supported values: ISOLATE Default.
conditions Sequence[PolicyIsolationRuleV2ConditionArgs]
This is for proviidng the set of conditions for the policy.
description str
This is the description of the access policy rule.
microtenant_id str
name str
This is the name of the policy rule.
policy_set_id str
zpn_isolation_profile_id str
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id
action String
This is for providing the rule action. Supported values: ISOLATE Default.
conditions List<Property Map>
This is for proviidng the set of conditions for the policy.
description String
This is the description of the access policy rule.
microtenantId String
name String
This is the name of the policy rule.
policySetId String
zpnIsolationProfileId String
Use zpaisolationprofile data source to retrieve the necessary Isolation profile ID zpn_isolation_profile_id

Supporting Types

PolicyIsolationRuleV2Condition
, PolicyIsolationRuleV2ConditionArgs

Id string
Operands List<Zscaler.Zpa.Inputs.PolicyIsolationRuleV2ConditionOperand>
This signifies the various policy criteria.
Operator string
Id string
Operands []PolicyIsolationRuleV2ConditionOperand
This signifies the various policy criteria.
Operator string
id String
operands List<PolicyIsolationRuleV2ConditionOperand>
This signifies the various policy criteria.
operator String
id string
operands PolicyIsolationRuleV2ConditionOperand[]
This signifies the various policy criteria.
operator string
id str
operands Sequence[PolicyIsolationRuleV2ConditionOperand]
This signifies the various policy criteria.
operator str
id String
operands List<Property Map>
This signifies the various policy criteria.
operator String

PolicyIsolationRuleV2ConditionOperand
, PolicyIsolationRuleV2ConditionOperandArgs

EntryValues List<Zscaler.Zpa.Inputs.PolicyIsolationRuleV2ConditionOperandEntryValue>
ObjectType string
This is for specifying the policy critiera.
Values List<string>
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored
EntryValues []PolicyIsolationRuleV2ConditionOperandEntryValue
ObjectType string
This is for specifying the policy critiera.
Values []string
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored
entryValues List<PolicyIsolationRuleV2ConditionOperandEntryValue>
objectType String
This is for specifying the policy critiera.
values List<String>
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored
entryValues PolicyIsolationRuleV2ConditionOperandEntryValue[]
objectType string
This is for specifying the policy critiera.
values string[]
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored
entry_values Sequence[PolicyIsolationRuleV2ConditionOperandEntryValue]
object_type str
This is for specifying the policy critiera.
values Sequence[str]
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored
entryValues List<Property Map>
objectType String
This is for specifying the policy critiera.
values List<String>
This denotes a list of values for the given object type. The value depend upon the key. If rhs is defined this list will be ignored

PolicyIsolationRuleV2ConditionOperandEntryValue
, PolicyIsolationRuleV2ConditionOperandEntryValueArgs

Lhs string
Rhs string
Lhs string
Rhs string
lhs String
rhs String
lhs string
rhs string
lhs str
rhs str
lhs String
rhs String

Import

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

Visit

Policy access isolation rule can be imported by using <RULE ID> as the import ID.

For example:

$ pulumi import zpa:index/policyIsolationRuleV2:PolicyIsolationRuleV2 example <rule_id>
Copy

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.