Use SQL to query items, auth mehtods, roles, targets, gateways and more from Akeyless.
- Get started →
- Documentation: Table definitions & examples
- Community: Join #steampipe on Slack →
- Get involved: Issues
Install the plugin with Steampipe:
steampipe plugin install akeyless-community/akeyless
Configure the plugin with your authentication method using the configuration file:
vi ~/.steampipe/config/akeyless.spc
Start Steampipe:
steampipe query
Run a sample query:
select
role_name
from
akeyless_role;
Or run the query from your command line without starting Steampipe:
steampipe query "select role_name from akeyless_role;"
Prerequisites:
Clone:
git clone https://github.com/akeyless-community/steampipe-plugin-akeyless.git
cd steampipe-plugin-akeyless
Build, which automatically installs the new version to your ~/.steampipe/plugins
directory:
make
Configure the plugin:
cp config/* ~/.steampipe/config
vi ~/.steampipe/config/akeyless.spc
Try it!
steampipe query
> .inspect akeyless
Further reading: