Fix Proxmox root SSH to allow key-based login for cluster communication

Proxmox nodes require root SSH key access for inter-node cluster
communication (web UI node switching, live migration, etc.). Set
PermitRootLogin to prohibit-password in group_vars/proxmox.yml so
key-based root login is allowed but password login remains disabled.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
directlx 2026-02-27 09:50:21 -05:00
parent 4196ac3185
commit e9d517f398
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
--- ---
# Proxmox-specific variables # Proxmox-specific variables
# Allow root SSH login with keys (required for Proxmox cluster inter-node communication)
common_ssh_permit_root_login: "prohibit-password"
# Disable firewall on Proxmox (uses its own iptables rules) # Disable firewall on Proxmox (uses its own iptables rules)
common_firewall_enabled: false common_firewall_enabled: false