summaryrefslogtreecommitdiff
path: root/playbooks/roles/outbound/templates/headscale/config/acl.json
blob: 449207d8ba5409b0c7152ba0e0405db0d7e77415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "groups": {
    "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:*"]
    }
  ]
}