--- # PostgreSQL Production Stack - Default Variables # Stack path on target host postgresql_production_stack_path: "{{ stacks_base_path }}/postgresql-production" # Wait configuration postgresql_production_wait_timeout: "{{ wait_timeout | default(60) }}" postgresql_production_wait_interval: 5 # Database configuration (from vault or defaults) postgresql_production_db_name: "{{ vault_db_name | default('michaelschiemer') }}" postgresql_production_db_user: "{{ vault_db_user | default('postgres') }}" postgresql_production_db_password: "{{ vault_db_password | default('') }}" # Backup configuration postgresql_production_backup_retention_days: 7 postgresql_production_backup_schedule: "0 2 * * *" # Template used to generate the PostgreSQL .env file postgresql_production_env_template: "{{ role_path }}/templates/postgresql.env.j2"