forked from KopiCloud/terraform-azure-rhel-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrhel-variables.tf
88 lines (73 loc) · 1.79 KB
/
rhel-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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#####################
## RHEL Variables ##
#####################
variable "linux_vm_image_publisher" {
type = string
description = "Virtual machine source image publisher"
default = "RedHat"
}
variable "linux_vm_image_offer" {
type = string
description = "Virtual machine source image offer"
default = "RHEL"
}
variable "rhel_7_7_sku" {
type = string
description = "SKU for RHEL 7.7"
default = "7.7"
}
variable "rhel_7_7_gen2_sku" {
type = string
description = "SKU for RHEL 7.7 Gen2"
default = "77-gen2"
}
variable "rhel_7_8_sku" {
type = string
description = "SKU for RHEL 7.8"
default = "7.8"
}
variable "rhel_7_8_gen2_sku" {
type = string
description = "SKU for RHEL 7.8 Gen2"
default = "78-gen2"
}
variable "rhel_7_9_sku" {
type = string
description = "SKU for RHEL 7.9"
default = "7_9"
}
variable "rhel_7_9_gen2_sku" {
type = string
description = "SKU for RHEL 7.9 Gen2"
default = "79-gen2"
}
variable "rhel_8_3_sku" {
type = string
description = "SKU for RHEL 8.3"
default = "8_3"
}
variable "rhel_8_3_gen2_sku" {
type = string
description = "SKU for RHEL 8.3 Gen2"
default = "83-gen2"
}
variable "rhel_8_4_sku" {
type = string
description = "SKU for RHEL 8.4"
default = "8_4"
}
variable "rhel_8_4_gen2_sku" {
type = string
description = "SKU for RHEL 8.4 Gen2"
default = "84-gen2"
}
variable "rhel_8_5_sku" {
type = string
description = "SKU for RHEL 8.5"
default = "8_5"
}
variable "rhel_8_5_gen2_sku" {
type = string
description = "SKU for RHEL 8.5 Gen2"
default = "85-gen2"
}