-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvm-dc2-variables.tf
45 lines (36 loc) · 1.45 KB
/
vm-dc2-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
########################################
## AD DC2 Virtual Machine - Variables ##
########################################
# Azure virtual machine settings #
variable "dc2_vm_size" {
type = string
description = "Size (SKU) of the virtual machine to create"
default = "Standard_B2s"
}
variable "dc2_license_type" {
type = string
description = "Specifies the BYOL type for the virtual machine. Possible values are 'Windows_Client' and 'Windows_Server' if set"
default = null
}
# Azure virtual machine storage settings #
variable "dc2_delete_os_disk_on_termination" {
type = string
description = "Should the OS Disk (either the Managed Disk / VHD Blob) be deleted when the Virtual Machine is destroyed?"
default = "true" # Update for your environment
}
variable "dc2_delete_data_disks_on_termination" {
description = "Should the Data Disks (either the Managed Disks / VHD Blobs) be deleted when the Virtual Machine is destroyed?"
type = string
default = "true" # Update for your environment
}
# Active Directory Configuration #
# domain controller 2 name
variable "ad_dc2_name" {
type = string
description = "This variable defines the name of AD Domain Controller 2"
}
# domain controller 1 private ip address
variable "ad_dc2_ip_address" {
type = string
description = "This variable defines the private ip address of AD Domain Controller 2"
}