GitOps for Tailscale ACLs with GitLab CI

Access Control Lists (ACLs) define what users or devices are permitted to access in your Tailscale network. This is an alternative to managing the ACL changes in the Access Controls page of the admin console to use GitOps for Tailscale ACLs to manage the ACL changes. With GitOps, your GitLab merge requests will send your tailnet policy file to Tailscale to determine whether the ACL is valid and whether all ACL tests pass. Your GitLab pushes also check validity and run tests, and if successful, will automatically apply your tailnet policy file changes to your tailnet.

GitOps for Tailscale ACLs is available for all plans.

Using GitOps for ACLs:

  • Provides a single source of truth for your tailnet policy file that you can manage outside of the Tailscale admin console.
  • Allows you to version your tailnet policy files.
  • Provides an audit trail of commits to change tailnet policy files, including what changed and who made the change.

With GitOps for Tailscale ACLs, you maintain your tailnet policy file with Git. This provides a central reference that can use the same controls for tailnet policy file changes as for code changes (“config as code”). For example, you can set up your GitLab repository to require reviews by another person, invoke tests for your tailnet policy file changes, and then use GitLab CI/CD to automatically apply the changes to your tailnet.

Tailscale publishes a GitLab CI Template to Sync Tailscale ACLs, available to include in your own CI file.

Prerequisites

In addition to already having your own Tailscale network, you need:

  • A GitLab account.
  • Working knowledge of GitLab procedures including committing changes, creating merge requests, and merging requests.
  • A private GitLab repository that will contain your tailnet policy file.
    Make sure this repo is private, as tailnet policy files contain personally identifiable information (PII), such as users email addresses.
  • A Tailscale API access token for your tailnet. You can create an API access token in the Keys page of the admin console.

GitLab CI File to Sync Tailscale ACLs

Tailscale publishes a GitLab CI Template to Sync Tailscale ACLs, available to include in your own CI file.

You do not need to use this GitLab CI Template to set up a GitOps pattern — you can also write your own or use another CI/CD tool.

What this template does

On merge requests that target the main branch, the test stage will send your tailnet policy file to Tailscale to determine whether the ACL is valid and whether all ACL tests pass. Tailscale will provide your workflow with the result of those checks.

On push (merge) operations that target the main branch, the apply stage will again check ACL validity and run ACL tests, with Tailscale reporting back the results to your workflow. If the tests succeed, the merge will complete and the workflow will automatically apply your tailnet policy file changes to your tailnet. If the tests fail, an error will prevent the merge from continuing.

You can see the status of the workflow in the GitLab CI/CD tab for your project. Look for a job with the name test or apply.

A screenshot of the Sync Tailscale ACLs GitLab CI workflow.

Inputs

The following inputs apply to the Sync Tailscale ACLs CI.

  • api-key (Required): An API access token authorized for your tailnet. You can create an API access token in the Keys page of the admin console.

  • policy-file (Optional): The path to your tailnet policy file in the repository. If not set this defaults to policy.hujson in the root of your repository.

  • tailnet (Required): This is your organization, which you can find in the Settings page of the admin console.

Set up your GitOps configuration

  1. In your GitLab repo, create a file named policy.hujson. Copy your tailnet policy file contents from the Access Controls page of the admin console into this file.

    If you want to change the tailnet policy file name to something else, you will need to add the policy-file argument to the with blocks in your GitLab CI configuration discussed below. Otherwise, the template will default to policy.hujson as the tailnet policy file.

    To prevent others admins in your organization from accidentally changing your tailnet policy file, add a comment to the policy file to show a warning in the Tailscale admin console:

    // This tailnet's ACLs are maintained in <url>
    
  2. Commit the tailnet policy file and push it to GitLab. For example, if you are using the command line:

    git add .
    git commit -sm "policy: import from admin console"
    git push -u origin main
    
  3. Create the following GitLab CI secrets in your repository’s settings:

    • TS_API_KEY: Use your Tailscale API access token as the value.
    • TS_TAILNET: Use your organization as the value. For example, example.com, myemail@example.com, example.gitlab, example.org.gitlab, etc. You can find your organization in the Settings page of the admin console.

    These secrets provide the configuration for the CI Job.

  4. Make a new GitLab CI job that uses the Sync Tailscale ACLs template.

    Create a file named .gitlab-ci.yml and paste in the following:

    include:
      - project: 'tailscale-dev/gitops-acl-ci'
        ref: main
        file: 'acls.gitlab-ci.yaml'
        with:
          api-key: $TS_API_KEY
          tailnet: $TS_TAILNET
    
    stages:
      - test
      - apply
    
    test:
      rules:
        - if: '$CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == $CI_DEFAULT_BRANCH'
    
    apply:
      rules:
        - if: '$CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
    

    Note this workflow appropriately uses the TS_API_KEY and TS_TAILNET environment variables to access your secrets. Do not place your actual secret values in .gitlab-ci.yml—use the environment values as shown.

    For an example repo that has set up this workflow, see https://gitlab.com/tailscale-dev/example-gitops-acls. Note this repo is for documentation purposes only, so it is OK for it to be public.

  5. Commit and push .gitlab-ci.yml.

The main steps in the CI are installing gitops-pusher, setting the correct environment variables and flags, and then running the workflow. For more details, see GitLab CI Template.

With this setup, you have created a a continuous integration (CI) that automatically tests and pushes your tailnet policy file changes to Tailscale!

Push changes to your Tailscale ACL

Now that your configuration has been set up, any time your want to update your ACL, modify the tailnet policy file in your repo and use the typical GitLab authoring/review/merge flow. You can check the status of the ACL validity checks and ACL tests in the GitLab UI in the Actions tab for your pull request. Look for a job with the names test or apply.

Prevent others from accidentally modifying your tailnet policy file

To prevent other admins from accidentally modifying the tailnet policy file in the Tailscale admin console, you can add a special comment to the policy file. Add a comment of the form:

// This tailnet's ACLs are maintained in <url>

With this comment in place, the Access Controls page of the admin console will display a warning.

A screenshot of the warning shown in the tailnet policy file.
You can link to any Git repository or URL. You can use your existing source management system and do not need to use the Sync Tailscale ACLs GitLab CI to display this warning.

Any admin with permissions to edit the tailnet policy file will still be able to edit it directly by selecting Edit anyways, for example in case of emergency.

A screenshot of the warning shown when trying to edit a tailnet policy file which is using GitOps.

Any changes made in the admin console will be overwritten next time the Sync Tailscale ACLs GitLab CI is used.

Reverting the most recent change to your ACL

If you need to revert the most recent change, use the GitLab UI to revert the merged pull request.

Additional information

  • Any manual tailnet policy file changes in the admin console won’t be reflected in your GitLab version of the tailnet policy file. The next time you use the Sync Tailscale ACLs GitLab CI, any changes made in the Tailscale admin console will be overwritten.

  • Tailscale API access tokens expire and currently there is no mechanism to have them automatically renewed. To handle the expiration, create a new API access token and update the GitHub TS_API_KEY secret to use the new value. Tailscale API access tokens after 90 days (or less if the key has a shorter expiry) but updating the GitLab secret monthly is a good practice.

    When you no longer need to use a Tailscale API access token, make sure you revoke it in the Keys page of the admin console.

  • Tailscale tailnet policy files are in HuJSON, a JSON format with trailing commas and comments. If you don’t want to write your tailnet policy files in HuJSON directly, you can use a tool that lets you generate JSON in the same schema as the HuJSON format. Make sure your tool puts the file in the same place as the policy-file setting in the GitLab CI.

Last updated