test(packer): add cpu & ram internal variable.

This commit is contained in:
Alexandre Pujol 2025-01-24 23:44:11 +01:00
parent aae36aa4e0
commit 4e73f7209f
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
5 changed files with 22 additions and 10 deletions

View file

@ -22,6 +22,18 @@ variable "ssh_publickey" {
default = "~/.ssh/id_ed25519.pub"
}
variable "cpus" {
description = "Default CPU of the VM"
type = string
default = "6"
}
variable "ram" {
description = "Default RAM of the VM"
type = string
default = "4096"
}
variable "disk_size" {
description = "Disk size of the VM to build"
type = string