diff --git a/providers/equinix/config/config.go b/providers/equinix/config/config.go index 631e2ea24d..a613690110 100644 --- a/providers/equinix/config/config.go +++ b/providers/equinix/config/config.go @@ -15,16 +15,31 @@ var Config = plugin.Provider{ ConnectionTypes: []string{provider.ConnectionType}, Connectors: []plugin.Connector{ { - Name: "equinix", - Use: "equinix", - Short: "Equinix Metal", + Name: "equinix", + Use: "equinix [org ] [project ] [--token ]", + Short: "Equinix Metal", + Long: `The equinix sub-command provides a method to interact with and query data within a specified +project on the Equinix Metal platform. + +By initiating a shell environment, users can perform various tasks and retrieve information +related to their projects using the specified token for authentication. + +Available Commands: + org Specifies the organization to interact with, using the organization identifier. + project Specifies the project to interact with, using the project identifier. + +Flags: + --token Required. Specifies the token for authenticating the user. +`, + MinArgs: 2, + MaxArgs: 2, Discovery: []string{}, Flags: []plugin.Flag{ { Long: "token", Type: plugin.FlagType_String, Default: "", - Desc: "Slack API token", + Desc: "Equinix API token", }, }, },