proxmox_defaults |
Default Proxmox Configurations for Simplicity of Deployment |
object({ cores = number sockets = number memory = number hotplug = string proxmox_clone = string disk_configuration = list(object({ type = string storage = string size = string })) network_configuration = list(object({ model = string bridge = string })) os = string target_node = string }) |
{ "cores": 1, "disk_configuration": [ { "size": "50G", "storage": "local-btrfs", "type": "virtio" } ], "hotplug": "network,disk,cpu,memory", "memory": 2048, "network_configuration": [ { "bridge": "vmbr0", "model": "virtio" } ], "os": "debian", "proxmox_clone": "debian-12-infra-compute-template", "sockets": 1, "target_node": "compute-1" } |
no |