Skip to content

Commit

Permalink
🐛 fix equinix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Oct 1, 2023
1 parent 6f7c407 commit 8cb57f4
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions providers/equinix/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 <org id>] [project <project-id>] [--token <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 <org id> Specifies the organization to interact with, using the organization identifier.
project <project-id> Specifies the project to interact with, using the project identifier.
Flags:
--token <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",
},
},
},
Expand Down

0 comments on commit 8cb57f4

Please sign in to comment.