diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-03 12:19:33 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-02-03 12:19:33 +0100 |
commit | cbe1116f9ea9c4b1c0e66125070d33236fe0bbc6 (patch) | |
tree | f374bd31392d9cdac5e151e839c8962698d4e91f /packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl | |
parent | e1688aa9f2c3cc09f05c007c921bc24ed566e8e8 (diff) |
packer: apply ansible common role to ubuntu image
Diffstat (limited to 'packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl')
-rw-r--r-- | packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl b/packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl index 8f40294..98a8753 100644 --- a/packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl +++ b/packer/debian-server-bookworm/debian-server-bookworm.pkr.hcl @@ -30,16 +30,16 @@ variable "ssh_private_key_file" { source "proxmox-iso" "debian-server-bookworm-12-9-0-amd64" { # Proxmox Connection Settings - proxmox_url = "${var.proxmox_api_url}" - username = "${var.proxmox_api_token_id}" - token = "${var.proxmox_api_token_secret}" + proxmox_url = "${var.proxmox_api_url}" + username = "${var.proxmox_api_token_id}" + token = "${var.proxmox_api_token_secret}" insecure_skip_tls_verify = true # VM General Settings node = "pve" vm_id = "100" vm_name = "${var.vm_hostname}" - template_description = "Debian Server Bookworm Image Test 1" + template_description = "Debian Server Bookworm 12.9.0 amd64" # VM OS Settings boot_iso { @@ -97,7 +97,7 @@ source "proxmox-iso" "debian-server-bookworm-12-9-0-amd64" { # http_port_min = 8802 # http_port_max = 8802 - ssh_username = "mas" + ssh_username = "mas" ssh_private_key_file = "${var.ssh_private_key_file}" # Raise the timeout, when installation takes longer |