turbot/tailscale_compliance
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:

powerpipe control run tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_manner

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run tailscale_compliance.control.security_best_practices_device_upgrade_clients_in_timely_manner --share

Steampipe 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_name
from
tailscale_device;