summaryrefslogtreecommitdiffstats
path: root/variables.pkr.hcl
blob: f4307e746f1ca0ad5de518339bc073c37741dcbf (plain) (blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Read the variables type constraints documentation
# https://www.packer.io/docs/templates/hcl_templates/variables#type-constraints
# for more info.

variable "accelerator" {
  type      = string
  default   = "kvm"
}

variable "base_dir" {
  type      = string
  default   = null
}

variable "boot_command" {
  type      = list(string)
  sensitive = true
  default   = null
}

variable "boot_wait" {
  type      = string
  default   = "5s"
}

variable "disk_image" {
  type      = bool
  default   = false
}

variable "disk_interface" {
  type      = string
  default   = "virtio-scsi"
}

variable "disk_size" {
  type      = string
  default   = "20G"
}

variable "ansible_extra_arguments" {
  type      = string
  default   = "--timeout=30"
}

variable "format" {
  type      = string
  default   = "qcow2"
}

variable "headless" {
  type      = bool
  default   = true
}

variable "http_dir" {
  type      = string
  default   = null
}

variable "iso_checksum" {
  type      = string
  default   = null
}

variable "iso_url" {
  type      = string
  default   = null
}

variable "output_directory" {
  type      = string
  default   = null
}

variable "playbook_file" {
  type      = string
  default   = null
}

variable "qemuargs" {
  type      = list(tuple([string, string]))
  default   = [
               ["-cpu", "host"],
               ["-m", "4096"],
               ["-smp", "2"]
              ]
}

variable "shutdown_command" {
  type      = string
  default   = "systemctl poweroff"
}

variable "skip_compaction" {
  type      = bool
  default   = true
}

variable "ssh_password" {
  type      = string
  sensitive = true
  default   = "secret"
}

variable "ssh_timeout" {
  type      = string
  default   = "60m"
}

variable "ssh_username" {
  type      = string
  default   = "root"
}

variable "use_backing_file" {
  type      = bool
  default   = false
}

variable "vm_name" {
  type      = string
  default   = null
}