Sha256: 20d830528bde38502f229f4a639bd1443d71871ced36602474b8780d1ba66615
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
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 - 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: "Allow tailscale to be installed" ignore_errors: yes dpkg_selections: name: tailscale selection: install tags: - maintenance - tailscale_reauth - name: "Install tailscale from apt" apt: name: tailscale state: present allow_downgrade: true 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' ]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
subspace-3.0.13 | ansible/roles/tailscale/tasks/main.yml |