--- # ============================================================================= # POTE Ansible Inventory Example # ============================================================================= # Copy this to inventory.yml and customize for your environment # ============================================================================= all: children: # ------------------------------------------------------------------------- # Development Environment # ------------------------------------------------------------------------- development: hosts: pote-dev: ansible_host: 10.0.10.100 ansible_user: root ansible_port: 22 # Override defaults if needed # pote_daily_report_time: "0 10" # log_level: "DEBUG" # ------------------------------------------------------------------------- # Staging/QA Environment # ------------------------------------------------------------------------- staging: hosts: pote-qa: ansible_host: 10.0.10.101 ansible_user: root ansible_port: 22 # ------------------------------------------------------------------------- # Production Environment # ------------------------------------------------------------------------- production: hosts: pote-prod: ansible_host: 10.0.10.95 ansible_user: root ansible_port: 22 # Production-specific overrides # pote_backup_retention_days: 180 # --------------------------------------------------------------------------- # Global Variables (apply to all hosts) # --------------------------------------------------------------------------- vars: ansible_python_interpreter: /usr/bin/python3 # SSH settings ansible_ssh_common_args: '-o StrictHostKeyChecking=no' # Become settings ansible_become: yes ansible_become_method: sudo