-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
38 lines (29 loc) · 1.05 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
#Strings with angle brackets should be replaced with actual data
variable "la_resource_group_name" {
default = "<My Log Analytics Resource Group name>"
description = "Resource Group name containing Log Analytics Workspace"
}
variable "log_analytics_workspace_name" {
default = "<My Log Analytics workspace name>"
description = "Existing Log Analytics Workspace name"
}
variable "wvd_resource_group_name" {
default = "<My WVD Resource Group name>"
description = "Resource Group name containing Windows Virtual Desktop host Pool"
}
variable "wvd_host_pool_name" {
default = "<My WVD host pool name>"
description = "Windows Virtual Desktop host pool name"
}
variable "wvd_workspace_name" {
default = "<My WVD workspace name>"
description = "Windows Virtual Desktop workspace name"
}
variable "wvd_session_host_name" {
default = "<My WVD session host name>"
description = "Windows Virtual Desktop session host name"
}
variable "client_secret" {
sensitive = true
description = "Service Principal secret credential"
}