aboutsummaryrefslogtreecommitdiffhomepage
path: root/tasks/main.yml
diff options
context:
space:
mode:
authorPaul B <paul@bonaud.fr>2019-01-25 11:55:41 +0100
committerPaul B <paul@bonaud.fr>2019-01-29 11:42:40 +0100
commit4d626d5a5c05f4676c0a403929de775404f9e63c (patch)
treeec8f117f8368ce22a87e785362839c387a2e3c33 /tasks/main.yml
parent2bedf1bbf762903d955e4a76f674799a6acb2258 (diff)
downloadansible-postgresql-role-4d626d5a5c05f4676c0a403929de775404f9e63c.tar.gz
ansible-postgresql-role-4d626d5a5c05f4676c0a403929de775404f9e63c.tar.zst
ansible-postgresql-role-4d626d5a5c05f4676c0a403929de775404f9e63c.zip
feat(extensions): adds creation of extension on databases if needed
Diffstat (limited to 'tasks/main.yml')
-rw-r--r--tasks/main.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
index 2fa7883..3d1892c 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -46,6 +46,7 @@
46- include: postgres-database.yml 46- include: postgres-database.yml
47 postgres_dbname={{ item.1.dbname }} 47 postgres_dbname={{ item.1.dbname }}
48 postgres_owner={{ item.1.owner }} 48 postgres_owner={{ item.1.owner }}
49 postgres_extensions={{ item.1.extensions|default([]) }}
49 postgres_port={{ item.0.port }} 50 postgres_port={{ item.0.port }}
50 with_subelements: 51 with_subelements:
51 - "{{ postgres_clusters }}" 52 - "{{ postgres_clusters }}"