29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
# Morphit Ansible inventory.
|
|
#
|
|
# Copy to inventory/hosts.yml and edit values for your deployment.
|
|
# This file is .yml format (Ansible also supports .ini); choose
|
|
# whichever your team prefers.
|
|
|
|
all:
|
|
children:
|
|
morphit_servers:
|
|
hosts:
|
|
# Single-host deployment. For multi-host (separate
|
|
# indexer/relay/postgres machines) extend this hosts:
|
|
# block and override group_vars selectively in
|
|
# group_vars/<group>.yml files.
|
|
morphit01:
|
|
# DUMMY-VALUE: replace with your VPS hostname or IP.
|
|
ansible_host: morphit.example.com
|
|
|
|
# DUMMY-VALUE: replace with your sudo-capable user.
|
|
# Do NOT use root — the hardening role will disable
|
|
# root SSH and you'd lock yourself out.
|
|
ansible_user: sysadmin
|
|
|
|
# DUMMY-VALUE: path to your SSH private key.
|
|
ansible_ssh_private_key_file: ~/.ssh/morphit_admin_ed25519
|
|
|
|
# Python interpreter on the target. Ubuntu 24.04
|
|
# ships /usr/bin/python3.12 by default.
|
|
ansible_python_interpreter: /usr/bin/python3
|