-
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
1 parent
00f95f1
commit 26cd2f4
Showing
86 changed files
with
5,546 additions
and
1,248 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
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
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_image_definition Data Source - citrix" | ||
subcategory: "CVAD" | ||
description: |- | ||
Data source of an image definition. Note that this feature is in Tech Preview. | ||
--- | ||
|
||
# citrix_image_definition (Data Source) | ||
|
||
Data source of an image definition. **Note that this feature is in Tech Preview.** | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
# Define Image Definition data source by id | ||
data "citrix_image_definition" "example_image_definition_by_id" { | ||
id = "00000000-0000-0000-0000-000000000000" | ||
} | ||
# Define Image Definition data source by name | ||
data "citrix_image_definition" "example_image_definition_by_name" { | ||
name = "Example Image Definition" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `id` (String) The GUID identifier of the image definition. | ||
- `name` (String) Name of the image definition. | ||
|
||
### Read-Only | ||
|
||
- `azure_image_definition` (Attributes) Details of the Azure Image Definition. (see [below for nested schema](#nestedatt--azure_image_definition)) | ||
- `description` (String) Description of the image definition. | ||
- `hypervisor` (String) ID of the hypervisor connection to be used for image definition. | ||
- `latest_version` (Number) Latest version of the image definition. | ||
- `os_type` (String) Operating system type of the image definition. | ||
- `session_support` (String) Session support of the image definition. | ||
|
||
<a id="nestedatt--azure_image_definition"></a> | ||
### Nested Schema for `azure_image_definition` | ||
|
||
Read-Only: | ||
|
||
- `image_gallery_name` (String) Name of the existing image gallery. If not specified and `use_image_gallery` is `true`, a new image gallery will be created. | ||
- `resource_group` (String) Existing resource group to store the image definition. If not specified, a new resource group will be created. | ||
- `use_image_gallery` (Boolean) Whether image gallery is used to store the image definition. Defaults to `false`. |
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 |
---|---|---|
|
@@ -33,6 +33,7 @@ resource "citrix_application_group" "example-application-group" { | |
|
||
- `application_group_folder_path` (String) The path of the folder in which the application group is located. | ||
- `description` (String) Description of the application group. | ||
- `enabled` (Boolean) Whether the application group is enabled or not. Defaults to `true`. | ||
- `included_users` (Set of String) Users who can use this application group. | ||
|
||
-> **Note** User must be in `Domain\UserOrGroupName` or `[email protected]` format | ||
|
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.