de.lehmann.automation.ansib.../roles/common/tasks/postgres_cron.yml
2024-04-16 12:47:05 +02:00

12 lines
347 B
YAML

- name: "Create pg_cron extension {{ timescaledb_database_name }}"
tags:
- install
- timescaledb_install
- postgres_extension
postgresql_ext:
name: pg_cron
db: "{{ timescaledb_database_name }}"
state: present
login_user: postgres
login_password: "{{ postgresql_admin_password }}"
login_host: "{{ lxc_ip }}"