Files
supabase-cloud-automation/ansible/inventory.yml
2025-08-28 22:54:52 -07:00

15 lines
479 B
YAML

# inventory.yml
# Replace YOUR_SERVER_IP with the actual IP address of your Hetzner server
all:
children:
supabase_servers:
hosts:
supabase-1:
ansible_host: 91.99.108.216
ansible_user: root # or ubuntu/debian depending on your image
ansible_ssh_private_key_file: ~/.ssh/your_private_key # path to your SSH key
# Alternative format if you prefer:
# [supabase_servers]
# supabase-1 ansible_host=YOUR_SERVER_IP ansible_user=root