-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
114 lines (92 loc) · 2.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
variable "wvd_rg_name" {
description = "Name of Resource Group to be created for WVD resources"
default = "TF-WVD-RG"
}
variable "region" {
description = "Region for all WVD resoures to be deployed into"
default = "East US"
}
variable "wvdhostcount" {
description = "Number of WVD hosts to deploy"
default = 2
}
variable "vnet_rg_name" {
description = "Name of Resource Group containing existing VNet to be used by WVD Hosts"
default = "Contoso-Lab-Networking"
}
variable "vnet_name" {
description = "Name of exiting VNet resouce to be used by WVD Hosts"
default = "vnet-contoso-lab"
}
variable "vnet_subnet_name" {
description = "Name of existing Subnet to be used by WVD Hosts"
default = "subnet"
}
variable "active_directory_domain" {
description = "WIndows AD Domain to Join WVD Hosts to"
default = "contoso.com"
}
variable "active_directory_username" {
description = "Windows AD uUsernam with permission to join machines to domain"
default = "ADUser"
}
variable "active_directory_password" {
description = "Windows AD Password for account with permission to join machines to domain"
default = "ADPassword"
}
variable "pooledhpname" {
description = "Pooled Host Pool Name"
default = "HP01-Pooled"
}
variable "pooledhpsessionlimit" {
description = "Maximum number of sessions per host in the pool"
default = 5
}
variable "pooledhpfriendlyname" {
description = "Pooled Host Pool Friendly Name"
default = "HP01 Pooled Host Pool"
}
variable "pooledhpdescription" {
description = "Pooled Host Pool Description"
default = "A Pooled Host Pool"
}
variable "pooledhpdesktopappname" {
description = "Pooled Host Pool Desktop App Group Friendly Name"
default = "HP01-Pooled-DAG"
}
variable "pooledhpdesktopappfriendlyname" {
description = "Pooled Host Pool Desktop App Group Friendly Name"
default = "HP01 Desktop Application Group"
}
variable "pooledhpdesktopappdescription" {
description = "Pooled Host Pool Desktop App Group Description"
default = "A Desktop Application Group for HP01"
}
variable "pooledhpremoteappname" {
description = "Pooled Host Pool RemoteApp App Group Name"
default = "HP01-Pooled-AppGroup"
}
variable "pooledhpremoteappfriendlyname" {
description = "Pooled Host Pool RemoteApp App Group Friendly Name"
default = "HP01 Remote Application Group"
}
variable "pooledhpremoteappdescription" {
description = "Pooled Host Pool RemoteApp App Group Description"
default = "A Remote Application Group for HP01"
}
variable "workspace" {
description = "WVD Workspace Name"
default = "HP01-WS-TF"
}
variable "workspacefriendlyname" {
description = "WVD Workspace Friendly Name"
default = "HP01 Workspace"
}
variable "workspacedesc" {
description = "WVD Workspace Description"
default = "A Workspace for HP01"
}
variable "wvdvmbasename" {
description = "WVD Base Name Sceme"
default = "wvdtf"
}