diff options
author | Paul B <paul@bonaud.fr> | 2019-01-25 11:55:41 +0100 |
---|---|---|
committer | Paul B <paul@bonaud.fr> | 2019-01-29 11:42:40 +0100 |
commit | 4d626d5a5c05f4676c0a403929de775404f9e63c (patch) | |
tree | ec8f117f8368ce22a87e785362839c387a2e3c33 /tasks/main.yml | |
parent | 2bedf1bbf762903d955e4a76f674799a6acb2258 (diff) | |
download | ansible-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.yml | 1 |
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 }}" |