blob: 9c266eb1904a456c8223b4ba566ab01d13bd3e57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
variable "proxmox_api_url" {
description = "Proxmox API URL"
type = string
}
variable "proxmox_api_token" {
type = string
}
variable "proxmox_node" {
description = "Proxmox node to deploy the VM on"
type = string
}
variable "debian_server_bookworm_packer_image_id" {
type = string
}
variable "ubuntu_server_noble_packer_image_id" {
type = string
}
variable "vm_username" {
description = "Username for SSH access to the VM"
type = string
default = "mas"
}
variable "ssh_public_key" {
type = string
sensitive = true
}
variable "openstack_cloud_name" {
description = "An entry in a clouds.yaml. If omitted, the OS_CLOUD environment variable is used."
type = string
}
|