playbooks/setup-postgres-standalone.yaml
2026-06-18 17:46:24 +08:00

12 lines
281 B
YAML

---
- name: Deploy standalone PostgreSQL
hosts: all
become: true
gather_facts: true
module_defaults:
ansible.builtin.apt:
lock_timeout: "{{ ai_workspace_apt_lock_timeout | default(900) | int }}"
roles:
- role: roles/vhosts/postgres
tags: [postgresql]