page_title | subcategory | description |
---|---|---|
citrix_admin_role Resource - citrix |
CVAD |
Manages an administrator role. |
Manages an administrator role.
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"
]
}
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.
can_launch_manage
(Boolean) Flag to determine if the user will have access to the Manage tab on the console. Defaults totrue
.
~> 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 totrue
.
~> 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.
id
(String) ID of the admin role.is_built_in
(Boolean) Flag to determine if the role was built-in or user defined
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