Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.07 KB

File metadata and controls

45 lines (33 loc) · 1.07 KB
page_title subcategory description
citrix_autoscale_plugin_template Resource - citrix
CVAD
Manages an autoscale plugin template.

citrix_autoscale_plugin_template (Resource)

Manages an autoscale plugin template.

Example Usage

resource citrix_autoscale_plugin_template example-template {
    name       = "<template-name>"
    type       = "Holiday"
    dates = [
        "2025-12-25",
        "2026-01-01"
    ]
}

Schema

Required

  • name (String) Name of the autoscale plugin template.
  • type (String) Type of the autoscale plugin template. Only template type Holiday is supported.

Optional

  • dates (Set of String) Date range for the autoscale holiday plugin template.

Import

Import is supported using the following syntax:

# Autoscale Plugin Template can be imported with the format TemplateType,TemplateName
terraform import citrix_autoscale_plugin_template.example-template "Holiday,MyTemplateName"