turbot/tailscale_compliance

GitHub
Loading controls...

Control: Use tags in ACLs

Description

Use tags to manage devices. Using tags allows you to define access to devices based on purpose, rather than based on owner.

Usage

Run the control in your terminal:

steampipe check tailscale_compliance.control.security_best_practices_tailnet_acl_tags_used

Snapshot and share results via Steampipe Cloud:

steampipe login
steampipe check --share tailscale_compliance.control.security_best_practices_tailnet_acl_tags_used

Plugins & Tables

SQL

select
name as resource,
case
when tags is not null then 'ok'
else 'alarm'
end as status,
case
when tags is not null then name || ' uses ACL tags.'
else name || ' does not use ACL tags.'
end as reason,
tailnet_name
from
tailscale_device;