ansible-role-tailscale

Install and configure tailscale on your system.

APACHE-2.0 License

Stars
6
Committers
1

Ansible role tailscale

Install and configure tailscale on your system.

GitHub GitLab Downloads Version
github gitlab downloads Version

Example Playbook

This example is taken from molecule/default/converge.yml and is tested on each push, pull request and release.

---
- name: Converge
  hosts: all
  become: true
  gather_facts: true

  roles:
    - role: robertdebock.tailscale
      # When setting the `tailscale_authkey`, a node can join automatically.
      # In case the `tailscale_authkey` is unset, registration of the node is manual.
      # tailscale_authkey: "tskey-auth-KEY_IDENTITY-KEY_SERET_KEY_SERET_KEY_SERET_KE"
      #
      # You can request the node to publish itself as an exit node.
      # tailscale_exit_node: true
      #
      # You can advertise certain routes to the Tailscale network.
      # tailscale_advertise_routes:
      #   - 10.0.0.0/24
      #   - 10.0.1.0/24
      #
      # You can give hosts a specific name:
      # tailscale_hostname: some_hostname

The machine needs to be prepared. In CI this is done using molecule/default/prepare.yml:

---
- name: Prepare
  hosts: all
  become: true
  gather_facts: false

  roles:
    - role: robertdebock.bootstrap

Also see a full explanation and example on how to use these roles.

Role Variables

The default values for the variables are set in defaults/main.yml:

---
# defaults file for tailscale

# You can configure your tailscale node to act as an exit node.
# Enabling this, sets the required sysctl settings and adds a firewalld rule.
tailscale_exit_node: false

# To route traffice for certain subnets through tailscale, add them here.
tailscale_advertise_routes: []

# Nodes can authenticate with the tailscale service using an authkey.
# These keys can be created here: https://login.tailscale.com/admin/settings/keys
tailscale_authkey: ""

# You can specify a hostname.
tailscale_hostname: "{{ ansible_hostname }}"

Requirements

State of used roles

The following roles are used to prepare a system. You can prepare your system in another way.

Requirement GitHub GitLab
robertdebock.bootstrap Build Status GitHub Build Status GitLab

Context

This role is a part of many compatible roles. Have a look at the documentation of these roles for further information.

Here is an overview of related roles: dependencies

Compatibility

This role has been tested on these container images:

container tags
Amazon Candidate
Debian all
EL 9
Fedora 38, 39
Ubuntu all

The minimum version of Ansible required is 2.10, tests have been done to:

  • The previous version.
  • The current version.
  • The development version.

If you find issues, please register them in GitHub.

License

Apache-2.0.

Author Information

robertdebock

Please consider sponsoring me.