page_title | subcategory | description |
---|---|---|
citrix_admin_folder Resource - citrix |
CVAD |
Manages an admin folder. |
Manages an admin folder.
resource "citrix_admin_folder" "example-admin-folder-1" {
name = "example-admin-folder-1"
type = [ "ContainsApplications" ]
}
resource "citrix_admin_folder" "example-admin-folder-2" {
name = "example-admin-folder-2"
type = [ "ContainsApplications" ]
parent_path = citrix_admin_folder.example-admin-folder-1.path
}
# If you want to define admin folders with different types but with the same name, please use a single resource block with a set of types for the admin folder
resource "citrix_admin_folder" "example-admin-folder-3" {
name = "example-admin-folder-3"
type = [ "ContainsApplications", "ContainsMachineCatalogs", "ContainsDeliveryGroups", "ContainsApplicationGroups" ]
}
name
(String) Name of the admin folder. Admin Folder name should be unique within the same parent folder.type
(Set of String) Set of types of the admin folder. Available values areContainsApplications
,ContainsMachineCatalogs
,ContainsDeliveryGroups
, andContainsApplicationGroups
.
parent_path
(String) Path of the parent admin folder. Please note that the parent path should not end with a\
.
id
(String) Identifier of the admin folder.path
(String) Path to the admin folder.total_application_groups
(Number) Number of application groups contained in the admin folder.total_applications
(Number) Number of applications contained in the admin folder.total_delivery_groups
(Number) Number of delivery groups contained in the admin folder.total_machine_catalogs
(Number) Number of machine catalogs contained in the admin folder.
Import is supported using the following syntax:
# Admin Folder can be imported by specifying the ID
terraform import citrix_admin_folder.example-admin-folder 1