diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-04 15:20:01 -0800 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2025-01-04 23:21:29 -0500 |
commit | 2b89d154e6341a1dbc4a74ea0f3920796f71e3eb (patch) | |
tree | ef80e47464add92ccdc3de9498062039f73b320e | |
parent | 750e33cfba758d12c7d161d3b4ef7ea7e130bac4 (diff) | |
download | oldinfra-2b89d154e6341a1dbc4a74ea0f3920796f71e3eb.tar.gz oldinfra-2b89d154e6341a1dbc4a74ea0f3920796f71e3eb.zip |
fix acl
-rw-r--r-- | roles/vpn/files/config/acl.json | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/roles/vpn/files/config/acl.json b/roles/vpn/files/config/acl.json index c33dc49..50382f4 100644 --- a/roles/vpn/files/config/acl.json +++ b/roles/vpn/files/config/acl.json @@ -1,10 +1,10 @@ { "groups": { "group:admin": ["elizabeth"], - "group:roomates": ["riley", "lucina"], - "group:friends": ["riley", "rain"], - "group:rain": ["rain"], + "group:roomates": ["riley", "lucina", "elizabeth"], + "group:friends": ["riley", "rain", "lucina"], "group:lucina": ["lucina"], + "group:rain": ["rain"], "group:sys": ["sys"] }, "tagOwners": { @@ -26,7 +26,7 @@ { "action": "accept", "src": ["group:sys"], - "dst": ["group:sys:*", "10.128.0.0/9:*", "group:rain:*", "192.168.1.0/24:*", "group:lucina:*"] + "dst": ["group:sys:*", "10.128.0.0/9:*", "group:rain:*"] }, { "action": "accept", @@ -36,7 +36,7 @@ { "action": "accept", "src": ["group:roomates"], - "dst": ["10.0.0.0/8:*", "192.168.86.0/24:*", "192.168.1.0/24:*"] + "dst": ["10.0.0.0/8:*", "192.168.86.0/24:*", "192.168.1.0/24:*", "group:roomates:*"] }, { "action": "accept", @@ -47,6 +47,11 @@ "action": "accept", "src": ["group:rain"], "dst": ["group:rain:*"] + }, + { + "action": "accept", + "src": ["group:lucina"], + "dst": ["group:lucina:*"] } ] } |