Skip to content

Latest commit

 

History

History
61 lines (44 loc) · 1.6 KB

admin_user.md

File metadata and controls

61 lines (44 loc) · 1.6 KB
page_title subcategory description
citrix_admin_user Resource - citrix
CVAD
Manages an administrator user for on-premise environment.

citrix_admin_user (Resource)

Manages an administrator user for on-premise environment.

Example Usage

resource "citrix_admin_user" "example-admin-user" {
    name = "example-admin-user"
    domain_name = "example-domain"
    rights = [
        {
            role = "Delivery Group Administrator",
            scope = "All"
        }
    ]
    is_enabled = true
}

Schema

Required

  • domain_name (String) Name of the domain that the user is a part of. For example, if the domain is example.com, then provide the value example for this field.
  • name (String) Name of an existing user in the active directory.
  • rights (Attributes List) Rights to be associated with the admin user. (see below for nested schema)

Optional

  • is_enabled (Boolean) Flag to determine if the administrator is to be enabled or not.

Read-Only

  • id (String) ID of the admin user.

Nested Schema for rights

Required:

  • role (String) Name of the role to be associated with the admin user.
  • scope (String) Name of the scope to be associated with the admin user.

Import

Import is supported using the following syntax:

# Admin User can be imported by specifying the SID
terraform import citrix_admin_user.example-admin-user S-1-5-21-0000000000-0000000000-0000000000-0000