-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
66 lines (56 loc) · 1.3 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
############
# General
############
variable "location" {
type = string
description = "location"
}
############
# Network
############
variable "cidr_avd_vnet" {
type = string
description = "AVD vnet address space"
}
variable "cidr_adds_subnet" {
type = string
description = "AD DS subnet address space"
}
variable "cidr_bastion_subnet" {
type = string
description = "Bastion subnet address space"
}
variable "cidr_avd_hosts_subnet" {
type = string
description = "AVD hosts subnet address space"
}
variable "adds_dc1_ip" {
type = string
description = "AD DS domain controller 1 IP address"
}
variable "adds_dc2_ip" {
type = string
description = "AD DS domain controller 2 IP address"
}
#####################
# AD Domain Services
#####################
variable "adds_domain" {
type = string
description = "AD DS domain name"
}
variable "adds_admin_username" {
type = string
description = "AD DS admin user"
}
variable "adds_admin" {
type = string
description = "AD DS admin user with local domain name"
}
#########################
# Azure Virtual Desktop
#########################
variable "host_pool_name" {
type = string
description = "AVD host pool name"
}