Skip to content

Commit 6f8eb6e

Browse files
committed
feat(acls): allow merging of acls from multiple pillar files
It would be useful to be able to define acls in multiple different pillar files. This is not possible using a list because lists can not be merged. If we use a dict then salt can merge all the acls together. The key name for the lists is only used for sorting the groupings of acls. For backwards compatibility we check to see if postgres:acls is a list and handle it properly.
1 parent 7529300 commit 6f8eb6e

File tree

2 files changed

+30
-21
lines changed

2 files changed

+30
-21
lines changed

pillar.example

+12-8
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ postgres:
6868
# databases they can access. Records take one of these forms:
6969
#
7070
# acls:
71-
# - ['local', 'DATABASE', 'USER', 'METHOD']
72-
# - ['host', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
73-
# - ['hostssl', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
74-
# - ['hostnossl', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
71+
# group:
72+
# - ['local', 'DATABASE', 'USER', 'METHOD']
73+
# - ['host', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
74+
# - ['hostssl', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
75+
# - ['hostnossl', 'DATABASE', 'USER', 'ADDRESS', 'METHOD']
7576
#
7677
# The uppercase items must be replaced by actual values.
7778
# METHOD could be omitted, 'md5' will be appended by default.
@@ -81,10 +82,13 @@ postgres:
8182
# If ``acls`` item value is empty ('', [], null), then the contents of
8283
# ``pg_hba.conf`` file will not be touched at all.
8384
acls:
84-
- ['local', 'db0', 'connuser', 'peer map=users_as_appuser']
85-
- ['local', 'db1', 'localUser']
86-
- ['host', 'db2', 'remoteUser', '192.168.33.0/24']
87-
- ['host', 'all', 'all', '127.0.0.1/32', 'md5']
85+
db1:
86+
- ['local', 'db0', 'connuser', 'peer map=users_as_appuser']
87+
- ['local', 'db1', 'localUser']
88+
db2:
89+
- ['host', 'db2', 'remoteUser', '192.168.33.0/24']
90+
all:
91+
- ['host', 'all', 'all', '127.0.0.1/32', 'md5']
8892

8993
identity_map:
9094
- ['users_as_appuser', 'jdoe', 'connuser']

postgres/templates/pg_hba.conf.j2

+18-13
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,26 @@ local all postgres peer
2020

2121
# TYPE DATABASE USER ADDRESS METHOD
2222

23-
{% for acl in acls %}
24-
{%- if acl|first() == 'local' %}
23+
{%- if acls is list -%}
24+
{%- set acls = {'_all': acls} %}
25+
{%- endif %}
26+
{%- for _, group in acls|dictsort %}
27+
{%- for acl in group %}
28+
{%- if acl|first() == 'local' %}
2529

26-
{%- if acl|length() == 3 %}
27-
{%- do acl.extend(['', 'md5']) %}
28-
{%- elif acl|length() == 4 %}
29-
{%- do acl.insert(3, '') %}
30-
{%- endif %}
30+
{%- if acl|length() == 3 %}
31+
{%- do acl.extend(['', 'md5']) %}
32+
{%- elif acl|length() == 4 %}
33+
{%- do acl.insert(3, '') %}
34+
{%- endif %}
3135

32-
{%- else %}
36+
{%- else %}
3337

34-
{%- if acl|length() == 4 %}
35-
{%- do acl.append('md5') %}
36-
{%- endif %}
38+
{%- if acl|length() == 4 %}
39+
{%- do acl.append('md5') %}
40+
{%- endif %}
3741

38-
{%- endif %}
42+
{%- endif %}
3943
{{ '{0:<7} {1:<15} {2:<15} {3:<23} {4}'.format(*acl) }}
40-
{% endfor %}
44+
{%- endfor %}
45+
{%- endfor %}

0 commit comments

Comments
 (0)