-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathactive-directory-variables.tf
61 lines (52 loc) · 1.85 KB
/
active-directory-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
##################################
## Active Directory - Variables ##
##################################
# active directory domain name
variable "ad_domain_name" {
type = string
description = "This variable defines the name of Active Directory domain, for example kopicloud.local"
}
# active directory domain netbios name
variable "ad_domain_netbios_name" {
type = string
description = "This variable defines the NETBIOS name of Active Directory domain, for example kopicloud"
}
# active directory domain mode
variable "ad_domain_mode" {
type = string
description = "This variable defines the mode of Active Directory domain and forest functional level"
default = "WinThreshold" # Windows Server 2016
}
# local administrator username
variable "ad_admin_username" {
type = string
description = "The username associated with the local administrator account on the virtual machine"
}
# local administrator password
variable "ad_admin_password" {
type = string
description = "The password associated with the local administrator account on the virtual machine"
}
# active directory database path
variable "ad_database_path" {
type = string
description = "The active directory database path"
default = "C:/Windows/NTDS"
}
# active directory sysvol path
variable "ad_sysvol_path" {
type = string
description = "The active directory SYSVOL path"
default = "C:/Windows/SYSVOL"
}
# active directory log path
variable "ad_log_path" {
type = string
description = "The active directory log path"
default = "C:/Windows/NTDS"
}
# active directory safe mode administrator password
variable "ad_safe_mode_administrator_password" {
type = string
description = "The active directory safe mode administrator password"
}