turbot/twilio

GitHub
steampipe plugin install twiliosteampipe plugin install twilio

Table: twilio_account_key

The Twilio account key provides a powerful and flexible primitive for managing access to the Twilio API.

Note: You must authenticate either using an Auth Token or a Main API Key to query this table.

Examples

Basic info

select
sid,
friendly_name,
date_created
from
twilio_account_key;

List keys older than 90 days

select
sid,
friendly_name,
date_created,
extract(
day
from
current_timestamp - date_created
) as age
from
twilio_account_key
where
extract(
day
from
current_timestamp - date_created
) > 90;

.inspect twilio_account_key

API keys in the Twilio account.

NameTypeDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
account_sidtextThe SID of the Account that created the resource.
date_createdtimestamp with time zoneThe date and time that the resource was created.
date_updatedtimestamp with time zoneThe date and time that the resource was last updated.
friendly_nametextThe string that you assigned to describe the resource.
sidtextThe unique string that identifies the resource.
titletextTitle of the resource.