diff --git a/roles/postgresql-for-authelia/tasks/main.json b/roles/postgresql-for-authelia/tasks/main.json index e2b3aa5..56fb9a1 100644 --- a/roles/postgresql-for-authelia/tasks/main.json +++ b/roles/postgresql-for-authelia/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_authelia_schema}}", + "login_db": "{{var_postgresql_for_authelia_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_authelia_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-forgejo/tasks/main.json b/roles/postgresql-for-forgejo/tasks/main.json index 6427c07..2ebf3a2 100644 --- a/roles/postgresql-for-forgejo/tasks/main.json +++ b/roles/postgresql-for-forgejo/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_forgejo_schema}}", + "login_db": "{{var_postgresql_for_forgejo_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_forgejo_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-gitlab/tasks/main.json b/roles/postgresql-for-gitlab/tasks/main.json index c41bb55..d9875e6 100644 --- a/roles/postgresql-for-gitlab/tasks/main.json +++ b/roles/postgresql-for-gitlab/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_gitlab_schema}}", + "login_db": "{{var_postgresql_for_gitlab_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_gitlab_username}}", "privs": "ALL", @@ -57,7 +57,7 @@ ], "community.postgresql.postgresql_ext": { "state": "present", - "db": "{{var_postgresql_for_gitlab_schema}}", + "login_db": "{{var_postgresql_for_gitlab_schema}}", "name": "{{item}}" } } diff --git a/roles/postgresql-for-hedgedoc/tasks/main.json b/roles/postgresql-for-hedgedoc/tasks/main.json index 3551075..ca0e52e 100644 --- a/roles/postgresql-for-hedgedoc/tasks/main.json +++ b/roles/postgresql-for-hedgedoc/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_hedgedoc_schema}}", + "login_db": "{{var_postgresql_for_hedgedoc_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_hedgedoc_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-synapse/tasks/main.json b/roles/postgresql-for-synapse/tasks/main.json index 7f6ceb0..b089806 100644 --- a/roles/postgresql-for-synapse/tasks/main.json +++ b/roles/postgresql-for-synapse/tasks/main.json @@ -43,7 +43,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_synapse_schema}}", + "login_db": "{{var_postgresql_for_synapse_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_synapse_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-tandoor/tasks/main.json b/roles/postgresql-for-tandoor/tasks/main.json index abd0400..c83409e 100644 --- a/roles/postgresql-for-tandoor/tasks/main.json +++ b/roles/postgresql-for-tandoor/tasks/main.json @@ -40,7 +40,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_tandoor_schema}}", + "login_db": "{{var_postgresql_for_tandoor_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_tandoor_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-vikunja/tasks/main.json b/roles/postgresql-for-vikunja/tasks/main.json index fb5f787..90b32f0 100644 --- a/roles/postgresql-for-vikunja/tasks/main.json +++ b/roles/postgresql-for-vikunja/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_vikunja_schema}}", + "login_db": "{{var_postgresql_for_vikunja_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_vikunja_username}}", "privs": "ALL", diff --git a/roles/postgresql-for-wiki_js/tasks/main.json b/roles/postgresql-for-wiki_js/tasks/main.json index c8aafea..c3629d3 100644 --- a/roles/postgresql-for-wiki_js/tasks/main.json +++ b/roles/postgresql-for-wiki_js/tasks/main.json @@ -39,7 +39,7 @@ "become_user": "postgres", "community.postgresql.postgresql_privs": { "state": "present", - "db": "{{var_postgresql_for_wiki_js_schema}}", + "login_db": "{{var_postgresql_for_wiki_js_schema}}", "objs": "ALL_IN_SCHEMA", "roles": "{{var_postgresql_for_wiki_js_username}}", "privs": "ALL",