ansible/roles/tailscale/tasks/main.yml in subspace-3.0.6 vs ansible/roles/tailscale/tasks/main.yml in subspace-3.0.9
- old
+ new
@@ -4,25 +4,28 @@
apt_key:
url: https://pkgs.tailscale.com/stable/ubuntu/{{ansible_distribution_release}}.gpg
state: present
tags:
- maintenance
+ - tailscale_reauth
- 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
+ - tailscale_reauth
- name: "Install tailscale from apt"
apt:
name: tailscale
state: latest
update_cache: yes
tags:
- maintenance
+ - tailscale_reauth
- 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' ]