Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 2.35 KB

admin_role.md

File metadata and controls

67 lines (49 loc) · 2.35 KB
page_title subcategory description
citrix_admin_role Resource - citrix
CVAD
Manages an administrator role.

citrix_admin_role (Resource)

Manages an administrator role.

Example Usage

resource "citrix_admin_role" "on_prem_example_role" {
    name = "on_prem_admin_role"
    description = "Example admin role for citrix onprem"
    permissions = ["AppGroupApplications_ChangeTags"] 
}

resource "citrix_admin_role" "cloud_example_role" {
    name = "cloud_admin_role"
    can_launch_manage = false
    can_launch_monitor = true
    description = "Example admin role for citrix daas"
    permissions = [
        "AppGroupApplications_Read", 
        "ApplicationGroup_AddScope", 
        "ApplicationGroup_Read"
    ]
}

Schema

Required

  • name (String) Name of the admin role.
  • permissions (Set of String) Permissions to be associated with the admin role.

-> Note To get a list of supported permissions, please refer to Admin Predefined Permissions for Cloud and Admin Predefined Permissions for On-Premise.

Optional

  • can_launch_manage (Boolean) Flag to determine if the user will have access to the Manage tab on the console. Defaults to true.

~> Please Note This field is only applicable for cloud admins. For on-premise admins, the only acceptable value is true.

  • can_launch_monitor (Boolean) Flag to determine if the user will have access to the Monitor tab on the console. Defaults to true.

~> Please Note This field is only applicable for cloud admins. For on-premise admins, the only acceptable value is true.

  • description (String) Description of the admin role.

Read-Only

  • id (String) ID of the admin role.
  • is_built_in (Boolean) Flag to determine if the role was built-in or user defined

Import

Import is supported using the following syntax:

# Admin Role can be imported by specifying the GUID
terraform import citrix_admin_role.example-admin-role 00000000-0000-0000-0000-000000000000