Control: Upgrade Tailscale clients in a timely manner
Description
Upgrade Tailscale clients regularly, in a timely manner. Tailscale frequently introduces new features and patches existing versions, including security patches.
Usage
Run the control in your terminal:
powerpipe control run tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_mannerSnapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_manner --shareSteampipe Tables
SQL
select  id as resource,  case    when not update_available then 'ok'    else 'alarm'  end as status,  case    when not update_available then name || ' has no updates available.'    else name || ' has updates available.'  end as reason,  tailnet_namefrom  tailscale_device;