-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.pkr.hcl
60 lines (50 loc) · 1.28 KB
/
variables.pkr.hcl
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
variable "vultr_api_key" {
type = string
default = env("VULTR_API_KEY")
sensitive = true
}
variable "os_id" {
type = number
default = 352
description = "Vultr OS ID for base image."
}
variable "machine_type" {
type = string
default = "vc2-1c-1gb"
description = "Vultr Machine type to build the snapshot on."
}
variable "region_id" {
type = string
default = "ewr"
description = "Vultr region id to deploy build server."
}
variable "hostname" {
type = string
default = "condor"
}
variable "description" {
type = string
default = "condor"
}
variable "containerd_release" {
description = "Version of Containerd runtime package to install via APT to use on cluster instances. Format should be in APT package version string format: x.y.z-00"
type = string
default = "1.4.3-1"
}
variable "k8_version" {
description = "Version of Kubernetes packages to install via APT. Format should be in APT package version string format: x.y.z-00"
type = string
default = "1.20.2-00"
}
variable "condor_image_version" {
type = string
default = "v1.0.0-1"
}
variable "state_timeout" {
type = string
default = "10m"
}
variable "ssh_clear_authorized_keys" {
type = bool
default = true
}