From 213b02624eeb8be72fced3a7c37201ece183e58f Mon Sep 17 00:00:00 2001 From: quentinchampenois <26109239+Quentinchampenois@users.noreply.github.com> Date: Wed, 9 Oct 2024 22:58:33 +0200 Subject: [PATCH] refactor(cmd): Update doc for secret key option in create cmd Signed-off-by: Quentin Champenois --- cmd/create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index c23a6924..51b5576e 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -37,8 +37,8 @@ func init() { createCmd.Flags().String("vpc-id", "", "The VPC ID to create the exit-server in (ec2)") createCmd.Flags().String("subnet-id", "", "The Subnet ID where the exit-server should be placed (ec2)") - createCmd.Flags().String("secret-key", "", "The access token for your cloud (scaleway, ec2)") - createCmd.Flags().String("secret-key-file", "", "Read this file for the access token for your cloud (scaleway, ec2)") + createCmd.Flags().String("secret-key", "", "The secret key for your cloud (scaleway, ec2)") + createCmd.Flags().String("secret-key-file", "", "Read this file for the secret key for your cloud (scaleway, ec2)") createCmd.Flags().String("session-token", "", "The session token for ec2 (when using with temporary credentials)") createCmd.Flags().String("session-token-file", "", "Read this file for the session token for ec2 (when using with temporary credentials)")