diff options
Diffstat (limited to 'playbooks/roles/outbound/templates/headscale/config/acl.json')
-rw-r--r-- | playbooks/roles/outbound/templates/headscale/config/acl.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/playbooks/roles/outbound/templates/headscale/config/acl.json b/playbooks/roles/outbound/templates/headscale/config/acl.json index fe1197a..449207d 100644 --- a/playbooks/roles/outbound/templates/headscale/config/acl.json +++ b/playbooks/roles/outbound/templates/headscale/config/acl.json @@ -1,12 +1,17 @@ { "groups": { - "group:admin": ["liz"] + "group:internal": ["liz{{ oauth_user_suffix }}", "lucina{{ oauth_user_suffix }}", "riley{{ oauth_user_suffix }}"], }, "acls": [ { "action": "accept", "src": ["{{ auth_key_user }}"], "dst": ["{{ auth_key_user }}:*", "10.0.0.0/8:*"] + }, + { + "action": "accept", + "src": ["group:internal"], + "dst": ["10.0.0.0/8:*"] } ] } |