mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 09:39:56 +00:00
21 lines
757 B
Plaintext
21 lines
757 B
Plaintext
# If you want to deploy to Proxmox, you need to:
|
|
# 1) copy that file to e.g. myproxmoxcluster.tfvars
|
|
# 2) make sure you have a VM template with QEMU agent pre-installed
|
|
# 3) customize the copy (you need to replace all the CHANGEME values)
|
|
# 4) deploy with "labctl create --provider proxmox/myproxmoxcluster ..."
|
|
|
|
proxmox_endpoint = "https://localhost:8006/"
|
|
proxmox_username = "terraform@pve"
|
|
proxmox_password = "CHANGEME"
|
|
|
|
# Which storage to use for VM disks. Defaults to "local".
|
|
#proxmox_storage = "ceph"
|
|
#proxmox_storage = "local-zfs"
|
|
|
|
# We recently rewrote the Proxmox configurations to automatically
|
|
# detect which template to use; so these variables aren't used anymore.
|
|
#proxmox_template_node_name = "CHANGEME"
|
|
#proxmox_template_vm_id = CHANGEME
|
|
|
|
|