-
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.
- Loading branch information
Sourav Samanta[Sourav.Samanta]
authored and
Sourav Samanta[Sourav.Samanta]
committed
Oct 23, 2024
1 parent
624a9db
commit f7b8e00
Showing
53 changed files
with
4,031 additions
and
854 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,37 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_wem_configuration_set Data Source - citrix" | ||
subcategory: "WEM" | ||
description: |- | ||
Data source to get details regarding a specific configuration set. | ||
--- | ||
|
||
# citrix_wem_configuration_set (Data Source) | ||
|
||
Data source to get details regarding a specific configuration set. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Get WEM configuration set by id | ||
data "citrix_wem_configuration_set" "test_wem_configuration_set_by_id" { | ||
id = "1" | ||
} | ||
# Get WEM configuration set by name | ||
data "citrix_wem_configuration_set" "test_wem_configuration_set_by_name" { | ||
name = "Default Site" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) ID of the WEM configuration set. | ||
- `name` (String) Name of the configuration set. | ||
|
||
### Read-Only | ||
|
||
- `description` (String) Description of the configuration set. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_desktop_icon Resource - citrix" | ||
subcategory: "CVAD" | ||
description: |- | ||
Resource for managing desktop icons. | ||
--- | ||
|
||
# citrix_desktop_icon (Resource) | ||
|
||
Resource for managing desktop icons. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "citrix_desktop_icon" "example-desktop-icon" { | ||
raw_data = filebase64("path/to/desktopicon.ico") | ||
} | ||
# Use filebase64 to encode a file's content in base64 format. | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `file_path` (String) Path to the icon file. Exactly one of `raw_data` and `file_path` is required. | ||
- `raw_data` (String) Prepare an icon in ICO format and convert its binary raw data to base64 encoding. Use the base64 encoded string as the value of this attribute. Exactly one of `raw_data` and `file_path` is required. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) GUID identifier of the desktop icon. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# Desktop icon can be imported by specifying the GUID | ||
terraform import citrix_desktop_icon.example-desktop-icon 4cec0568-1c91-407f-a32e-cc487822d0a0 | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_wem_configuration_set Resource - citrix" | ||
subcategory: "WEM" | ||
description: |- | ||
Manages configuration sets within a WEM deployment. | ||
~> Disclaimer This feature is supported for Citrix Cloud customers, and will be made available for On-Premises soon. | ||
--- | ||
|
||
# citrix_wem_configuration_set (Resource) | ||
|
||
Manages configuration sets within a WEM deployment. | ||
|
||
~> **Disclaimer** This feature is supported for Citrix Cloud customers, and will be made available for On-Premises soon. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "citrix_wem_configuration_set" "example-config-set"{ | ||
name = "example config set" | ||
description = "example WEM configuration set" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) Name of the configuration set. WEM Site Name should be unique. | ||
|
||
### Optional | ||
|
||
- `description` (String) Description of the configuration set. Default value is empty string. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Identifier of the configuration set. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# WEM Configuration Set can be imported by specifying the ID | ||
terraform import citrix_wem_configuration_set.example-config-set 1234 | ||
``` |
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,49 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_wem_directory_object Resource - citrix" | ||
subcategory: "WEM" | ||
description: |- | ||
Manages machine-level AD objects within a WEM deployment. | ||
~> Disclaimer This feature is supported for Citrix Cloud customers, and will be made available for On-Premises soon. | ||
~> Warning Having more than one Directory Object with the same Catalog ID is not allowed. | ||
--- | ||
|
||
# citrix_wem_directory_object (Resource) | ||
|
||
Manages machine-level AD objects within a WEM deployment. | ||
|
||
~> **Disclaimer** This feature is supported for Citrix Cloud customers, and will be made available for On-Premises soon. | ||
|
||
~> **Warning** Having more than one Directory Object with the same Catalog ID is not allowed. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "citrix_wem_directory_object" "example-directory-object" { | ||
configuration_set_id = citrix_wem_configuration_set.example-config-set.id | ||
machine_catalog_id = citrix_machine_catalog.example-machine-catalog.id | ||
enabled = true | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `configuration_set_id` (Number) Identifier of the site to which the machine-level AD object belongs. | ||
- `enabled` (Boolean) Indicates whether the machine-level AD object is enabled. | ||
- `machine_catalog_id` (String) GUID identifier of the machine catalog. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) Identifier of the directory object. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# WEM Directory Object can be imported by specifying the ID | ||
terraform import citrix_wem_directory_object.example-directory-object 1234 | ||
``` |
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.