File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ A list of databases to ensure exist on the server. Only the `name` is required;
62
62
password: # defaults to not set
63
63
priv: # defaults to not set
64
64
role_attr_flags: # defaults to not set
65
+ db: # defaults to not set
65
66
login_host: # defaults to 'localhost'
66
67
login_password: # defaults to not set
67
68
login_user: # defaults to '{{ postgresql_user }}'
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ postgresql_users: []
37
37
# password: # defaults to not set
38
38
# priv: # defaults to not set
39
39
# role_attr_flags: # defaults to not set
40
+ # db: # defaults to not set
40
41
# login_host: # defaults to 'localhost'
41
42
# login_password: # defaults to not set
42
43
# login_user: # defaults to '{{ postgresql_user }}'
Original file line number Diff line number Diff line change 5
5
password : " {{ item.password | default(omit) }}"
6
6
priv : " {{ item.priv | default(omit) }}"
7
7
role_attr_flags : " {{ item.role_attr_flags | default(omit) }}"
8
+ db : " {{ item.db | default(omit) }}"
8
9
login_host : " {{ item.login_host | default('localhost') }}"
9
10
login_password : " {{ item.login_password | default(omit) }}"
10
11
login_user : " {{ item.login_user | default(postgresql_user) }}"
You can’t perform that action at this time.
0 commit comments