From 21eec549cd131d5e86b6e4b40457f3b78510d683 Mon Sep 17 00:00:00 2001 From: Jeremy Hess <126785627+akljph@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:35:02 +0300 Subject: [PATCH 1/3] Update install command --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 7c16422..46696c9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -36,7 +36,7 @@ from Download and install the latest Akeyless plugin: ```shell -steampipe plugin install akeyless/akeyless +steampipe plugin install akeyless-community/akeyless ``` ### Configuration From c562693eccef6bd19bf4922220f627e8f32bfd94 Mon Sep 17 00:00:00 2001 From: Jeremy Hess <126785627+akljph@users.noreply.github.com> Date: Mon, 5 Aug 2024 10:55:10 +0300 Subject: [PATCH 2/3] Bump version --- version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version b/version index eb1fe1a..293e105 100644 --- a/version +++ b/version @@ -1,2 +1,2 @@ # Use Semantic versioning only. Please update the version number before opening a pull request. -v0.0.7 +v0.0.8 From bf5c55633dd79eb71f801bfee38ddf438cf200ae Mon Sep 17 00:00:00 2001 From: Jeremy Hess <126785627+akljph@users.noreply.github.com> Date: Mon, 5 Aug 2024 11:02:59 +0300 Subject: [PATCH 3/3] Update index.md --- docs/index.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/index.md b/docs/index.md index 46696c9..0c31231 100644 --- a/docs/index.md +++ b/docs/index.md @@ -41,22 +41,22 @@ steampipe plugin install akeyless-community/akeyless ### Configuration -Installing the latest Akeyless plugin will create a config file (`~/.steampipe/config/akeyless.spc`) with a single connection named `akeyless`: +Installing the latest Akeyless plugin will create a config file (`~/.steampipe/config/akeyless.spc`) with a single connection named `akeyless`. Edit the file to include a valid `access_type` and `access_id` and uncomment any other fields as necessary: ```hcl connection "akeyless" { - plugin = "akeyless" + plugin = "akeyless-community/akeyless" - # Defines the type of access. Supported types: "api_key", "aws_iam", "azure_ad", "gcp", "universal_identity", "k8s", "jwt". - #access_type = "" + # Required. Defines the type of access. Supported types: "api_key", "aws_iam", "azure_ad", "gcp", "universal_identity", "k8s", "jwt". + access_type = "" - # The access ID for authentication, required for all access types. - #access_id = "" + # Required. The access ID of your auth method. + access_id = "" - # The access key or secret, paired with access_id. + # The access key or secret, paired with access_id. Only required when `access_type = api_key`. #access_key = "" - # API URL for the Akeyless Gateway, the default URL is https://api.akeyless.io. + # API URL for the Akeyless Gateway. Default URL is https://api.akeyless.io. #api_url = "" # JSON Web Token for JWT-based authentication. @@ -90,7 +90,7 @@ Akeyless supports multiple authentication methods: `api_key`,`aws_iam`,`azure_ad ```hcl connection "akeyless" { - plugin = "akeyless/akeyless" + plugin = "akeyless-community/akeyless" access_type = "aws_iam" access_id = "p-xxxxxxxxxx" } @@ -98,5 +98,5 @@ connection "akeyless" { ## Get involved -- Open source: https://github.com/akeyless/steampipe-plugin-akeyless +- Open source: [https://github.com/akeyless/steampipe-plugin-akeyless](https://github.com/akeyless-community/steampipe-plugin-akeyless) - Community: [Join #steampipe on Slack →](https://turbot.com/community/join)