Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(cmd): Update doc for secret key option in delete cmd #133

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)")

Expand Down