-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
48 changed files
with
1,736 additions
and
338 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_admin_permissions Data Source - citrix" | ||
subcategory: "CVAD" | ||
description: |- | ||
Data source for a list of administrator permissions. | ||
--- | ||
|
||
# citrix_admin_permissions (Data Source) | ||
|
||
Data source for a list of administrator permissions. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Get all predefined admin permissions | ||
data "citrix_admin_permissions" "all-permissions" { } | ||
# The permissions can then be viewed via: | ||
# terraform apply | ||
# terraform state show data.citrix_admin_permissions.all-permissions | ||
# Example using the data source to create a new custom role | ||
data "citrix_admin_role" "desktop_group_admin_role" { | ||
name = "Desktop Group Custom Admin Role" | ||
description = "Role for managing delivery groups" | ||
permissions = [ | ||
// all permissions from the data source that start with "DesktopGroup_" | ||
for permission in data.citrix_admin_permissions.all-permissions.permissions : | ||
permission.id if startswith(permission.id, "DesktopGroup_") | ||
] | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `permissions` (Attributes List) The list of administrator permissions. (see [below for nested schema](#nestedatt--permissions)) | ||
|
||
<a id="nestedatt--permissions"></a> | ||
### Nested Schema for `permissions` | ||
|
||
Read-Only: | ||
|
||
- `description` (String) Description of the admin permission. | ||
- `group_id` (String) ID of the group to which the permission belongs. | ||
- `group_name` (String) Name of the group to which the permission belongs. | ||
- `id` (String) ID of the admin permission. | ||
- `name` (String) Name of the admin permission. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_image_version Data Source - citrix" | ||
subcategory: "CVAD" | ||
description: |- | ||
Data source an image version. Note that this feature is in Tech Preview. | ||
--- | ||
|
||
# citrix_image_version (Data Source) | ||
|
||
Data source an image version. **Note that this feature is in Tech Preview.** | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Define Image Version data source by id | ||
data "citrix_image_version" "example_image_version_by_id" { | ||
id = "00000000-0000-0000-0000-000000000000" | ||
image_definition = "00000000-0000-0000-0000-000000000000" | ||
} | ||
# Define Image Version data source by version number | ||
data "citrix_image_version" "example_image_version_by_version_number" { | ||
version_number = 1 | ||
image_definition = "00000000-0000-0000-0000-000000000000" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `image_definition` (String) Id of the image definition to associate this image version with. | ||
|
||
### Optional | ||
|
||
- `id` (String) The id of the image version. | ||
- `version_number` (Number) The version number of the image version. | ||
|
||
### Read-Only | ||
|
||
- `azure_image_specs` (Attributes) Image configuration for Azure image version. (see [below for nested schema](#nestedatt--azure_image_specs)) | ||
- `description` (String) Description of the image version. | ||
- `hypervisor` (String) Id of the hypervisor to use for creating this image version. | ||
- `hypervisor_resource_pool` (String) Id of the hypervisor resource pool to use for creating this image version. | ||
- `os_type` (String) The OS type of the image version. | ||
- `session_support` (String) Session support for the image version. | ||
|
||
<a id="nestedatt--azure_image_specs"></a> | ||
### Nested Schema for `azure_image_specs` | ||
|
||
Read-Only: | ||
|
||
- `disk_encryption_set` (Attributes) The configuration for Disk Encryption Set (DES). The DES must be in the same subscription and region as your resources. If your master image is encrypted with a DES, use the same DES when creating this machine catalog. When using a DES, if you later disable the key with which the corresponding DES is associated in Azure, you can no longer power on the machines in this catalog or add machines to it. (see [below for nested schema](#nestedatt--azure_image_specs--disk_encryption_set)) | ||
- `license_type` (String) Windows license type used to provision virtual machines in Azure at the base compute rate. License types include: `Windows_Client` and `Windows_Server`. | ||
- `machine_profile` (Attributes) The name of the virtual machine or template spec that will be used to identify the default value for the tags, virtual machine size, boot diagnostics, host cache property of OS disk, accelerated networking and availability zone. (see [below for nested schema](#nestedatt--azure_image_specs--machine_profile)) | ||
- `service_offering` (String) The Azure VM Sku to use when creating machines. | ||
- `storage_type` (String) Storage account type used for provisioned virtual machine disks on Azure. Storage types include: `Standard_LRS`, `StandardSSD_LRS` and `Premium_LRS`. | ||
|
||
<a id="nestedatt--azure_image_specs--disk_encryption_set"></a> | ||
### Nested Schema for `azure_image_specs.disk_encryption_set` | ||
|
||
Read-Only: | ||
|
||
- `disk_encryption_set_name` (String) The name of the disk encryption set. | ||
- `disk_encryption_set_resource_group` (String) The name of the resource group in which the disk encryption set resides. | ||
|
||
|
||
<a id="nestedatt--azure_image_specs--machine_profile"></a> | ||
### Nested Schema for `azure_image_specs.machine_profile` | ||
|
||
Read-Only: | ||
|
||
- `machine_profile_resource_group` (String) The name of the resource group where the machine profile VM or template spec is located. | ||
- `machine_profile_template_spec_name` (String) The name of the machine profile template spec. | ||
- `machine_profile_template_spec_version` (String) The version of the machine profile template spec. | ||
- `machine_profile_vm_name` (String) The name of the machine profile virtual machine. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.