mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 10:05:19 +00:00
f19e8aa7f0
Signed-off-by: Kristoffer Dalby <kristoffer@tailscale.com>
27 lines
444 B
Plaintext
27 lines
444 B
Plaintext
// This ACL is used to test group expansion
|
|
|
|
{
|
|
"groups": {
|
|
"group:example": [
|
|
"testuser",
|
|
],
|
|
},
|
|
|
|
"hosts": {
|
|
"host-1": "100.100.100.100",
|
|
"subnet-1": "100.100.101.100/24",
|
|
},
|
|
|
|
"acls": [
|
|
{
|
|
"action": "accept",
|
|
"src": [
|
|
"group:example",
|
|
],
|
|
"dst": [
|
|
"host-1:*",
|
|
],
|
|
},
|
|
],
|
|
}
|