-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -190,7 +190,7 @@ I've tested this and had a network connection to a system within a minute of the | |
|
||
The tailscale ACL for such a setup could look something like this: | ||
|
||
```json | ||
``` | ||
{ | ||
"postures": { | ||
// a recently updated macOS system | ||
|
@@ -204,13 +204,13 @@ The tailscale ACL for such a setup could look something like this: | |
"posture:protectedMacOS" | ||
], | ||
"acls": [ | ||
// Only allow access to the production network and nodes for people in the Production Access group | ||
// Only allow access to the production network for SCIM-ed users | ||
{ | ||
"action": "accept", | ||
"src": ["group:[email protected]"], | ||
"dst": [ | ||
"tag:production:*", | ||
"production-network:*" | ||
"production-network:*" | ||
] | ||
}, | ||
// Allow access to non-production by default | ||
|
@@ -219,7 +219,7 @@ The tailscale ACL for such a setup could look something like this: | |
"src": ["group:[email protected]"], | ||
"dst": [ | ||
"tag:nonproduction:*", | ||
"nonproduction-network:*" | ||
"nonproduction-network:*" | ||
] | ||
} | ||
] | ||
|