-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwindows-vm-os-images.tf
47 lines (39 loc) · 1.25 KB
/
windows-vm-os-images.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
##############
## OS Image ##
##############
# Windows Server 2022 SKU used to build VMs
variable "windows_2022_sku" {
type = string
description = "Windows Server 2022 SKU used to build VMs"
default = "2022-Datacenter"
}
# 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_r2_sku" {
type = string
description = "Windows Server 2012 R2 SKU used to build VMs"
default = "2012-R2-Datacenter"
}
# Windows Server 2012 SKU used to build VMs
variable "windows_2012_sku" {
type = string
description = "Windows Server 2012 SKU used to build VMs"
default = "2012-Datacenter"
}
# Windows Server 2008 R2 SKU used to build VMs
variable "windows_2008_sku" {
type = string
description = "Windows Server 2008 R2 SP1 SKU used to build VMs"
default = "2008-R2-SP1"
}