Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.4 KB

File metadata and controls

51 lines (37 loc) · 1.4 KB
page_title subcategory description
citrix_policy_priority Resource - citrix
CVAD
Manages the policy priorities within a policy set.

citrix_policy_priority (Resource)

Manages the policy priorities within a policy set.

Example Usage

// Policy Priority manages the priorities of the policies in a policy set.
resource "citrix_policy_priority" "example" {
    policy_set_id   = citrix_policy_set_v2.example_policy_set_v2.id
    policy_priority = [
        citrix_policy.example_policy_1.id,
        citrix_policy.example_policy_2.id,
        citrix_policy.example_policy_3.id
    ]
}

Schema

Required

  • policy_priority (List of String) Ordered list of policy IDs.

-> Note The order of policy IDs in the list determines the priority of the policies.

  • policy_set_id (String) GUID identifier of the policy set.

Read-Only

  • policy_names (List of String) Ordered list of policy names.

-> Note The order of policy names in the list reflects the priority of the policies.

  • policy_set_name (String) Name of the policy set.

Import

Import is supported using the following syntax:

# Policy Priority can be imported by specifying the Policy Set GUID
terraform import citrix_policy_priority.example 00000000-0000-0000-0000-000000000000