page_title | subcategory | description |
---|---|---|
citrix_admin_scope Resource - citrix |
Manages an administrator scope. |
Manages an administrator scope.
resource "citrix_admin_scope" "example-admin-scope" {
name = "example-admin-scope"
description = "Example admin scope for delivery group and machine catalog"
scoped_objects = [
{
object_type = "DeliveryGroup",
object = "<Name of existing Delivery Group to be added to the scope>"
},
{
object_type = "MachineCatalog",
object = "<Name of existing Machine Catalog to be added to the scope>"
}
]
}
name
(String) Name of the admin scope.
description
(String) Description of the admin scope.scoped_objects
(Attributes List) List of scoped objects to be associated with the admin scope. (see below for nested schema)
id
(String) ID of the admin scope.
Required:
object
(String) Name of an existing object under the object type to be added to the scope.object_type
(String) Type of the scoped object. Allowed values are:HypervisorConnection
,MachineCatalog
,DeliveryGroup
,ApplicationGroup
,Tag
,PolicySet
andUnknown
.
Import is supported using the following syntax:
# Admin Scope can be imported by specifying the GUID
terraform import citrix_admin_scope.example-admin-scope 00000000-0000-0000-0000-000000000000