Resolved values verified unchanged: same host, IP, user, key and port for all 8. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
16 lines
736 B
YAML
16 lines
736 B
YAML
# General
|
|
ntfy_emergency_app_dir: /opt/ntfy-emergency-app
|
|
ntfy_emergency_app_port: 3000
|
|
|
|
# (caddy_sites_dir and subdomain now in services_config.yml)
|
|
|
|
# ntfy configuration
|
|
ntfy_emergency_app_topic: "emergencia"
|
|
ntfy_emergency_app_ui_message: "Leave Pablo a message, he will respond as soon as possible"
|
|
|
|
# Remote access
|
|
remote_host_name: "{{ groups['edge'] | first }}"
|
|
remote_host: "{{ hostvars.get(remote_host_name, {}).get('ansible_host', remote_host_name) }}"
|
|
remote_user: "{{ hostvars.get(remote_host_name, {}).get('ansible_user', 'counterweight') }}"
|
|
remote_key_file: "{{ hostvars.get(remote_host_name, {}).get('ansible_ssh_private_key_file', '') }}"
|
|
remote_port: "{{ hostvars.get(remote_host_name, {}).get('ansible_port', 22) }}"
|