-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.pkr.hcl
71 lines (56 loc) · 1 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
61
62
63
64
65
66
67
68
69
variable "dfly_version" {
type = string
description = "A string like 6.4.0"
}
variable "iso_mirror_location" {
type = string
default = "us-default"
}
variable "iso_mirror" {
type = string
default = ""
}
variable "iso_name" {
type = string
default = ""
}
variable "iso_url" {
type = string
default = ""
}
variable "iso_checksum" {
type = string
default = ""
}
variable "disk_size" {
type = number
default = 50000
}
variable "headless" {
type = bool
default = true
}
variable "ssh_username" {
type = string
default = "vagrant"
}
variable "ssh_password" {
type = string
default = "vagrant"
}
variable "ssh_timeout" {
type = string
default = "30m"
}
variable "login_prompt_time" {
type = string
default = ""
description = "Number of seconds until the login: prompt appears"
}
variable "install_script" {
type = string
}
# variable "vagrant_cloud_token" {
# type = string
# default = "${env("ATLAS_TOKEN")}"
#}