Skip to content

Latest commit

 

History

History
66 lines (53 loc) · 2.63 KB

quickcreate_aws_workspaces_image.md

File metadata and controls

66 lines (53 loc) · 2.63 KB
page_title subcategory description
citrix_quickcreate_aws_workspaces_image Resource - citrix
DaaS Quick Deploy - AWS WorkSpaces Core
Manages an AWS WorkSpaces image.

citrix_quickcreate_aws_workspaces_image (Resource)

Manages an AWS WorkSpaces image.

Example Usage

# 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"
}

Schema

Required

  • 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 are BYOL_REGULAR_BYOP and BYOL_GRAPHICS_G4DN_BYOP.
  • name (String) Name of the image.
  • operating_system (String) The type of operating system of the image. Possible values are WINDOWS and LINUX.
  • session_support (String) The supported session type of the image. Possible values are SingleSession and MultiSession.

Read-Only

  • 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

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