page_title | subcategory | description |
---|---|---|
citrix_quickcreate_aws_workspaces_image Resource - citrix |
DaaS Quick Deploy - AWS WorkSpaces Core |
Manages an AWS WorkSpaces image. |
Manages an AWS WorkSpaces image.
# Quick Deploy AWS WorkSpaces Image with AMI image
resource "citrix_quickcreate_aws_workspaces_image" "example_aws_workspaces_image_ami" {
name = "exampe-aws-workspaces-image"
account_id = citrix_quickcreate_aws_workspaces_account.example_aws_workspaces_account.id
aws_image_id = "ami-012345abcde"
description = "Example AWS WorkSpaces image imported with AMI id"
session_support = "SingleSession"
operating_system = "WINDOWS"
ingestion_process = "BYOL_REGULAR_BYOP"
}
# Quick Deploy AWS WorkSpaces Image with WSI image
resource "citrix_quickcreate_aws_workspaces_image" "example_aws_workspaces_image_wsi" {
name = "exampe-aws-workspaces-image"
account_id = citrix_quickcreate_aws_workspaces_account.example_aws_workspaces_account.id
aws_image_id = "wsi-012345abcde"
description = "Example AWS WorkSpaces image imported with WSI id"
session_support = "SingleSession"
operating_system = "WINDOWS"
ingestion_process = "BYOL_REGULAR_BYOP"
}
account_id
(String) GUID identifier of the account.aws_image_id
(String) Id of the image to be imported in AWS.description
(String) Description of the image.ingestion_process
(String) The type of ingestion process of the image. Possible values areBYOL_REGULAR_BYOP
andBYOL_GRAPHICS_G4DN_BYOP
.name
(String) Name of the image.operating_system
(String) The type of operating system of the image. Possible values areWINDOWS
andLINUX
.session_support
(String) The supported session type of the image. Possible values areSingleSession
andMultiSession
.
aws_imported_image_id
(String) The Id of the image imported in AWS WorkSpaces.id
(String) GUID identifier of the image.state
(String) The state of ingestion process of the image.tenancy
(String) The type of tenancy of the image.
Import is supported using the following syntax:
# Quick Deploy AWS WorkSpaces Image can be imported by specifying the Account GUID and the Image GUID separated by a comma.
terraform import citrix_quickcreate_aws_workspaces_image.example_aws_workspaces_image 00000000-0000-0000-0000-000000000000,00000000-0000-0000-0000-000000000000