From 0b2b78fb4da68c55a6602af6a07b41a03109a4f6 Mon Sep 17 00:00:00 2001 From: Niels Hofmans Date: Sun, 28 Apr 2024 14:33:34 +0200 Subject: [PATCH] chore(blog): formatting --- content/blog/the-way-of-the-cookie.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/blog/the-way-of-the-cookie.md b/content/blog/the-way-of-the-cookie.md index 073a93c..b395289 100644 --- a/content/blog/the-way-of-the-cookie.md +++ b/content/blog/the-way-of-the-cookie.md @@ -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:oncall@company.com"], "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:developers@company.com"], "dst": [ "tag:nonproduction:*", - "nonproduction-network:*" + "nonproduction-network:*" ] } ]