generated from dimi4ik/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
90 lines (64 loc) · 2.62 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
########################################################################
### die Vars muss im voraus als Environment Variables gesetzt werden ###
### export VMM Variable s werden ###
########################################################################
variable "ad_admin_password" {
description = "The Domain Admin username of the on-premises Active Directory / The API key client id for Citrix Cloud customer."
type = string
sensitive = true
}
variable "ad_admin_username" {
type = string
description = "The Domain Admin password of the on-premises Active Directory / The API key client secret for Citrix Cloud customer."
}
# citrix.tf variables
## On-Premises customer provider settings
variable "provider_hostname" {
description = "The hostname of the Citrix Virtual Apps and Desktops Delivery Controller."
type = string
}
# Set this field to true if DDC does not have a valid SSL certificate configured. Omit this variable for Citrix Cloud customer.
variable "provider_disable_ssl_verification" {
description = "Disable SSL verification for the Citrix Virtual Apps and Desktops Delivery Controller."
type = bool
}
# Common provider settings
# For On-Premises customers: Domain Admin username and password are needed to interact with the Citrix Virtual Apps and Desktops Delivery Controller.
# For Citrix Cloud customers: API key client id and secret are needed to interact with Citrix DaaS APIs. These can be created/found under Identity and Access Management > API Access
# delivery_groups.tf variables
variable "delivery_group_name" {
description = "Name of the Delivery Group to create"
type = string
}
variable "allow_list" {
description = "List of users to allow for the Delivery Group in DOMAIN\\username format"
type = list(string)
}
variable "desktop_name" {
type = string
description = "Name of the published desktop"
}
variable "desktop_description" {
type = string
description = "description of the published desktop"
}
variable "citrix_machine_catalog_name" {
type = string
description = "Name of the machine catalog"
}
variable "citrix_machine_catalog_description" {
type = string
description = "Description of the machine catalog"
}
variable "citrix_machine_catalog_zone" {
type = string
description = "Zone of the machine catalog"
}
variable "citrix_machine_catalog_account" {
description = "Allocation type of the machine catalog"
type = string
}
variable "delivery_group_description" {
type = string
description = "Description of the delivery group"
}