-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathubuntu-variables.tf
49 lines (48 loc) · 1.33 KB
/
ubuntu-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
######################
## Ubuntu Variables ##
######################
variable "linux_vm_image_publisher" {
type = string
description = "Virtual machine source image publisher"
default = "Canonical"
}
variable "linux_vm_image_offer" {
type = string
description = "Virtual machine source image offer"
default = "UbuntuServer"
}
variable "linux_vm_image_offer_20" {
type = string
description = "Virtual machine source image offer"
default = "0001-com-ubuntu-server-focal"
}
variable "ubuntu_1604_sku" {
type = string
description = "SKU for Ubuntu 16.04 LTS"
default = "16.04-lts"
}
variable "ubuntu_1604_gen2_sku" {
type = string
description = "SKU for Ubuntu 16.04 LTS Gen2"
default = "16_04-lts-gen2"
}
variable "ubuntu_1804_sku" {
type = string
description = "SKU for Ubuntu 18.04 LTS"
default = "18.04-lts"
}
variable "ubuntu_1804_gen2_sku" {
type = string
description = "SKU for Ubuntu 18.04 LTS Gen2"
default = "18_04-lts-gen2"
}
variable "ubuntu_2004_sku" {
type = string
description = "SKU for Ubuntu 20.04 LTS"
default = "20_04-lts"
}
variable "ubuntu_2004_gen2_sku" {
type = string
description = "SKU for Ubuntu 20.04 LTS Gen2"
default = "20_04-lts-gen2"
}