chore(tests): format packer files.
This commit is contained in:
parent
f7d1931bdf
commit
1d68b5bbc4
4 changed files with 23 additions and 23 deletions
|
|
@ -9,17 +9,17 @@ source "qemu" "archlinux-gnome" {
|
|||
iso_target_path = "${var.iso_dir}/archlinux-cloudimg-amd64.img"
|
||||
cpus = 6
|
||||
memory = 4096
|
||||
disk_size = "${var.disk_size}"
|
||||
disk_size = var.disk_size
|
||||
accelerator = "kvm"
|
||||
headless = true
|
||||
ssh_username = "${var.username}"
|
||||
ssh_password = "${var.password}"
|
||||
ssh_username = var.username
|
||||
ssh_password = var.password
|
||||
ssh_port = 22
|
||||
ssh_wait_timeout = "1000s"
|
||||
disk_compression = true
|
||||
disk_detect_zeroes = "unmap"
|
||||
disk_discard = "unmap"
|
||||
output_directory = "${var.output}"
|
||||
output_directory = var.output
|
||||
vm_name = "${var.prefix}${source.name}.qcow2"
|
||||
boot_wait = "10s"
|
||||
shutdown_command = "echo ${var.password} | sudo -S shutdown -hP now"
|
||||
|
|
@ -44,17 +44,17 @@ source "qemu" "archlinux-kde" {
|
|||
iso_target_path = "${var.iso_dir}/archlinux-cloudimg-amd64.img"
|
||||
cpus = 6
|
||||
memory = 4096
|
||||
disk_size = "${var.disk_size}"
|
||||
disk_size = var.disk_size
|
||||
accelerator = "kvm"
|
||||
headless = true
|
||||
ssh_username = "${var.username}"
|
||||
ssh_password = "${var.password}"
|
||||
ssh_username = var.username
|
||||
ssh_password = var.password
|
||||
ssh_port = 22
|
||||
ssh_wait_timeout = "1000s"
|
||||
disk_compression = true
|
||||
disk_detect_zeroes = "unmap"
|
||||
disk_discard = "unmap"
|
||||
output_directory = "${var.output}"
|
||||
output_directory = var.output
|
||||
vm_name = "${var.prefix}${source.name}.qcow2"
|
||||
boot_wait = "10s"
|
||||
shutdown_command = "echo ${var.password} | sudo -S shutdown -hP now"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue