23 lines
378 B
Plaintext
23 lines
378 B
Plaintext
variable "init_ssh_auth_key" {
|
|
default = ${SSH_PUB_KEY}
|
|
}
|
|
|
|
variable "init_user_name" {
|
|
default = "${SSH_DEFAULT_USER}"
|
|
}
|
|
|
|
# 30GB default (Size in bytes)
|
|
variable "base_disk_size" {
|
|
default = ${VM_DISK_SIZE}
|
|
}
|
|
|
|
# 4GB of RAM per deployed host (Size in bytes)
|
|
variable "base_ram_size" {
|
|
default = ${VM_RAM_SIZE}
|
|
}
|
|
|
|
variable "kybus_source" {
|
|
default = "${KYBUS_BASE_IMAGE}"
|
|
}
|
|
|