turbot/tailscale
steampipe plugin install tailscale

Table: tailscale_tailnet_key - Query Tailscale Tailnet Keys using SQL

Tailscale is a network connectivity suite that enables secure and simplified network management. A key feature is the Tailnet Key, which is used to identify and authenticate devices within a Tailnet (Tailscale's term for a virtual network). Each Tailnet Key provides data such as its ID, capabilities, and status, among other details.

Table Usage Guide

The tailscale_tailnet_key table provides comprehensive insights into Tailnet Keys within Tailscale's network connectivity suite. As a network administrator, you can leverage this table to manage and monitor keys, including their capabilities and status. This can be useful for ensuring secure and authenticated access to your Tailnets, as well as for troubleshooting and network optimization tasks.

Important Notes

  • You must specify the id in the where or join clause (where id=, join tailscale_tailnet_key k on k.id=) to query this table.

Examples

Basic Info

Analyze the settings to understand the capabilities of specific devices within a network. This is particularly useful for network administrators who need to manage and monitor different device capabilities within their network.

select
id,
key,
created,
expires,
capabilities ->> 'devices' as device_capabilities
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR';
select
id,
key,
created,
expires,
json_extract(capabilities, '$.devices') as device_capabilities
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR';

Keys that will expire in the next 90 days

Analyze the settings to understand which keys are due to expire within the next 90 days. This is useful for proactively managing key renewals and avoiding unexpected access issues.

select
id,
key,
expires :: date - now() :: date as expiry_days_left
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and expires <= (now() + interval '90' day);
select
id,
key,
julianday(expires) - julianday(datetime('now')) as expiry_days_left
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and julianday(expires) <= julianday(datetime('now', '+90 day'));

Keys that have expired

Discover the keys that have already expired. This is useful for identifying and managing outdated keys in your Tailscale Tailnet.

select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and expires <= now();
select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and expires <= datetime('now');

Get pre-authorized keys

Determine the areas in which pre-authorized keys are used within a specific network. This is useful for managing access and understanding the security measures in place.

select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and (
capabilities -> 'devices' -> 'create' ->> 'preauthorized'
) :: boolean;
select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and json_extract(capabilities, '$.devices.create.preauthorized') = 'true';

Get reusable keys

Determine the areas in which reusable keys are created within a specific Tailscale network. This query is particularly useful in understanding the lifecycle of these keys, including their creation and expiration dates, to manage network security effectively.

select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and (capabilities -> 'devices' -> 'create' ->> 'reusable') :: boolean;
select
id,
key,
created,
expires
from
tailscale_tailnet_key
where
id = 'wPOfcN2CMDR'
and json_extract(capabilities, '$.devices.create.reusable') = 'true';

Schema for tailscale_tailnet_key

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
capabilitiesjsonbThe list of device capabilities.
createdtimestamp with time zoneDevice creation time.
expirestimestamp with time zoneDevice expiry time.
idtext=An unique identifier of the tailnet key.
keytextKey information.
tailnet_nametextThe name of your tailnet.
titletextTitle of the resource.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- tailscale

You can pass the configuration to the command with the --config argument:

steampipe_export_tailscale --config '<your_config>' tailscale_tailnet_key