Loading controls...
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:
steampipe check tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_manner
Snapshot and share results via Steampipe Cloud:
steampipe loginsteampipe check --share tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_manner
Plugins & 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;