Sha256: 303e77d0c81494aed65eee56df5b03493e4812e5b03402276cffff77e2d8b650

Contents?: true

Size: 873 Bytes

Versions: 2

Compression:

Stored size: 873 Bytes

Contents

---
  - name: "Add Tailscale apt key"
    become: true
    apt_key:
      url: https://pkgs.tailscale.com/stable/ubuntu/{{ansible_distribution_release}}.gpg
      state: present
    tags:
      - maintenance

  - name: "Add Tailscale apt repos"
    become: true
    apt_repository:
      repo: "deb https://pkgs.tailscale.com/stable/ubuntu {{ansible_distribution_release}} main"
      state: present
    tags:
      - maintenance

  - name: "Install tailscale from apt"
    apt:
      name: tailscale
      state: latest
      update_cache: yes
    tags:
      - maintenance

  - name: "Join the tailnet and force reauth"
    become: true
    command: tailscale up --ssh --auth-key={{tailscale_auth_key}} --hostname={{project_name | regex_replace('_', '')}}-{{hostname}} --accept-risk=lose-ssh {{tailscale_options}} --force-reauth
    tags: [ 'never', 'tailscale_reauth' ]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
subspace-3.0.6 ansible/roles/tailscale/tasks/main.yml
subspace-3.0.5 ansible/roles/tailscale/tasks/main.yml