-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.conf
55 lines (44 loc) · 907 Bytes
/
auth.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# /etc/puppet/auth.conf
###
### Authenticated ACLs!
###
# Allow nodes to retrieve their own configuration.
path ~ ^/catalog/([^/]+)$
method find
allow $1
# Allow nodes to retrieve their own node definition.
path ~ ^/node/([^/]+)$
method find
allow $1
# Allow all nodes to access the certificates services.
path /certificate_revocation_list/ca
method find
allow *
# Allow all nodes to store their own reports.
path ~ ^/report/([^/]+)$
method save
allow $1
# Unconditionally allow access to all files services
# which means in practice that fileserver.conf will
# be used.
path /file
allow *
###
### Unauthenticated ACL!
###
# Allow access to the master CA.
path /certificate/ca
auth any
method find
allow *
path /certificate/
auth any
method find
allow *
path /certificate_request
auth any
method find, save
allow *
# Show the default policy.
path /
auth any