Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.3 KB

machine_properties.md

File metadata and controls

42 lines (30 loc) · 1.3 KB
page_title subcategory description
citrix_machine_properties Resource - citrix
CVAD
Manages the properties of a machine.

citrix_machine_properties (Resource)

Manages the properties of a machine.

Example Usage

resource "citrix_machine_properties" "example_machine_properties" {
    name = "domain\\machine-name" // For workgroup machines, use machine-name only
    machine_catalog_id = "00000000-0000-0000-0000-000000000000" // Id of the machine catalog the machine belongs to
    tags = [ "11111111-1111-1111-1111-111111111111" ] // Tags to be assigned to the machine
}

Schema

Required

  • machine_catalog_id (String) The ID of the machine catalog to which the machine belongs.
  • name (String) The Name of the machine. For domain joined machines, the name must be in format <machine> format. Must be all in lowercase.

Optional

  • tags (Set of String) A set of identifiers of tags to associate with the machine.

Import

Import is supported using the following syntax:

# citrix_machine_properties resource can be imported with the Machine Name 
terraform import citrix_machine_properties.example_machine_properties domain\machine-name