headscale/tests/acls/acl_policy_basic_groups.hujson

26 lines
452 B
Plaintext
Raw Normal View History

2021-07-04 19:23:31 +08:00
// This ACL is used to test group expansion
{
"Groups": {
"group:example": [
"testnamespace",
],
},
"Hosts": {
"host-1": "100.100.100.100",
"subnet-1": "100.100.101.100/24",
},
"ACLs": [
{
"Action": "accept",
"Users": [
"group:example",
],
"Ports": [
"host-1:*",
],
},
],
}