test(packer): add cpu & ram internal variable.
This commit is contained in:
parent
aae36aa4e0
commit
4e73f7209f
5 changed files with 22 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue