No description
This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
Find a file
Chris Pressland fa368fa723
Some checks failed
Tailscale ACL GitOps / acls (push) Failing after 14s
Update Renovate Assignment
2024-04-18 12:41:01 +01:00
.github/workflows Initial Commit 2024-02-25 21:42:55 +00:00
policy.hujson Remove Anand 2024-04-08 15:25:51 +01:00
README.md Initial Commit 2024-02-25 21:42:55 +00:00
renovate.json Update Renovate Assignment 2024-04-18 12:41:01 +01:00

tailscale-acls

This repo contains our Tailscale ACLs which are modified using a GitOps methodology.

Visual Studio Code

Visual Studio Code supports a similar jsonc (JSON with comments) format. To treat all *.hujson files as jsonc with trailing commas allowed, you can add the following snippet to your Visual Studio Code configuration:

"[jsonc]": {
    "editor.formatOnSave": false
},
"files.associations": {
    "*.hujson": "jsonc"
},
"json.schemas": [
    {
        "fileMatch": [
            "*.hujson"
        ],
        "schema": {
            "allowTrailingCommas": true
        }
    }
]