-
Notifications
You must be signed in to change notification settings - Fork 2
/
windows-vm-ss-variables.tf
56 lines (48 loc) · 1.39 KB
/
windows-vm-ss-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
############################
## Windows VM - Variables ##
############################
# Windows VM Admin User
variable "windows-admin-username" {
type = string
description = "Windows VM Admin User"
default = "tfadmin"
}
# Windows VM Admin Password
variable "windows-admin-password" {
type = string
description = "Windows VM Admin Password"
default = "S3cr3ts24"
}
# Windows VM Hostname (limited to 15 characters long)
variable "windows-vm-hostname" {
type = string
description = "Windows VM Hostname"
default = "tfazurevm1"
}
# Windows VM Virtual Machine Size
variable "windows-vm-size" {
type = string
description = "Windows VM Size"
default = "Standard_B1s"
}
##############
## OS Image ##
##############
# Windows Server 2019 SKU used to build VMs
variable "windows-2019-sku" {
type = string
description = "Windows Server 2019 SKU used to build VMs"
default = "2019-Datacenter"
}
# Windows Server 2016 SKU used to build VMs
variable "windows-2016-sku" {
type = string
description = "Windows Server 2016 SKU used to build VMs"
default = "2016-Datacenter"
}
# Windows Server 2012 R2 SKU used to build VMs
variable "windows-2012-sku" {
type = string
description = "Windows Server 2012 R2 SKU used to build VMs"
default = "2012-R2-Datacenter"
}