infrastructure/ansible/roles/headscale/files/acls.json
Jake Howard 77415c6c6e
All checks were successful
/ terraform (push) Successful in 1m0s
/ ansible (push) Successful in 1m33s
Add tag for access to private services
2024-11-03 14:14:32 +00:00

19 lines
382 B
JSON

{
"tagOwners": {
"tag:client": [],
"tag:private-svcs": []
},
"acls": [
{
"action": "accept",
"src": ["tag:client"],
"dst": ["*:*"]
},
{
"action": "accept",
"src": ["tag:private-svcs"],
"dst": ["{{ vps_hosts.private_ipv6_marker }}:80,443"]
}
]
}