Steampipe Plugin
Steampipe is an open source tool to instantly query cloud services with SQL. This integration enables users to query the Akeyless API to view their Akeyless account information in table format using the CLI.
Prerequisites
- Steampipe installed
- A supported Akeyless Authentication Method
Installation
Download and install the latest Akeyless plugin from your terminal. Installing the plugin will create a configuration file at ~/.steampipe/config/akeyless.spc
.
steampipe plugin install akeyless-community/akeyless
Authentication
The Steampipe plugin supports the following Authentication Methods:
Edit the akeyless.spc
file with your chosen Authentication Method. The only required fields are access_type
and access_id
:
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "jwt"
access_id = "<your-jwt-auth-access-id>"
jwt = "<your-akeyless-jwt-token>"
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "aws_iam"
access_id = "<your-aws-iam-access-id>"
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "azure_ad"
access_id = "<your-azure-access-id>"
azure_object_id = "<your-azure-object-id>"
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "gcp"
access_id = "<your-gcp-access-id>"
gcp_audience = "<your-gcp-audience>"
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "k8s"
access_id = "<your-k8s-access-id>"
k8s_service_account_token = "<your-k8s-service-acct-token>"
k8s_auth_config_name = "<your-k8s-auth-config-name>"
api_url = "<your-gw-url>:8081"
# Optional, when working with a self-signed certifiate. CA certificate for TLS verification of the Akeyless Gateway.
#gateway_ca_cert = ""
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "universal_identity"
access_id = "<your-uid-access-id>"
uid_token = "<your-uid-token>"
connection "akeyless" {
plugin = "akeyless-community/akeyless"
access_type = "api_key"
access_id = "<your-api-key-access-id>"
access_key = "<your-api-key-access-key>"
Working with Gateway
For every Authentication Method, you have the option to work directly through your Gateway. To do this, set the api_url
variable with your Gateway's Rest API V2 endpoint ( https://<Your-Akeyless-GW-URL:8081>).
When working with a self-signed certificate, you can provide your gateway_ca_certificate
as well.
Testing
Run a quick test to ensure the plugin is working. From your terminal run the following:
steampipe query "select role_name from akeyless_role;"
This will show all your Roles
by Role Name
.
You can also run steampipe query
which will open the query shell where you can simply run select role_name from akeyless_role;
.
Note
A query will output only the information your Authentication Method has access to based on its Access Role.
Examples
You can find more examples on our Steampipe Hub page here.
Tables
The following tables are available for querying.
Table | Description |
---|---|
akeyless_auth_method | Akeyless Authentication Methods |
akeyless_gateway | Akeyless Gateways |
akeyless_item | Akeyless Items |
akeyless_role | Akeyless Access Roles |
akeyless_target | Akeyless Targets |
Updated 3 months ago