From 704402013df5e5abd66c66bd9c6749817ed764fc Mon Sep 17 00:00:00 2001 From: Quentin Champenois Date: Thu, 10 Oct 2024 00:50:23 +0200 Subject: [PATCH] refactor(cmd): Update doc for secret key option in delete cmd Signed-off-by: Quentin Champenois --- cmd/delete.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/delete.go b/cmd/delete.go index 855464e1..ddc8640f 100644 --- a/cmd/delete.go +++ b/cmd/delete.go @@ -24,8 +24,8 @@ func init() { deleteCmd.Flags().StringP("id", "i", "", "Host ID") deleteCmd.Flags().String("ip", "", "Host IP") - deleteCmd.Flags().String("secret-key", "", "The access token for your cloud (scaleway, ec2)") - deleteCmd.Flags().String("secret-key-file", "", "Read this file for the access token for your cloud (scaleway, ec2)") + deleteCmd.Flags().String("secret-key", "", "The secret key for your cloud (scaleway, ec2)") + deleteCmd.Flags().String("secret-key-file", "", "Read this file for the secret key for your cloud (scaleway, ec2)") deleteCmd.Flags().String("session-token", "", "The session token for ec2 (when using with temporary credentials)") deleteCmd.Flags().String("session-token-file", "", "Read this file for the session token for ec2 (when using with temporary credentials)")