initial commit

This commit is contained in:
2025-08-28 22:54:52 -07:00
commit ab3009d329
9 changed files with 368 additions and 0 deletions

15
ansible/inventory.yml Normal file
View File

@@ -0,0 +1,15 @@
# 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