Files
ansible-msp-automations/roles/proxmox_config_backup/defaults/main.yml
2026-03-15 15:48:59 -07:00

34 lines
884 B
YAML

---
# =============================================================================
# proxmox_config_backup — defaults
# =============================================================================
# Backup destination: local | sftp
# git destination removed pending secure implementation (TODO: encrypt secrets)
backup_destination: local
# Local backup settings
backup_local_dir: /var/backups/proxmox-config
backup_local_keep: 10
# SFTP settings (used when backup_destination: sftp)
backup_sftp_host: ""
backup_sftp_user: ""
backup_sftp_key: ""
backup_sftp_remote_dir: "/backups/proxmox"
# What to include in the backup tarball
backup_paths_proxmox:
- /etc/pve
- /etc/network/interfaces
- /etc/hosts
- /etc/hostname
- /etc/apt/sources.list
- /etc/apt/sources.list.d
backup_paths_xcpng:
- /etc/xcp-ng
- /etc/network/interfaces
- /etc/hosts
- /etc/hostname