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 9962297
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions providers/equinix/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,27 @@ 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: `equinix is designed for querying resources within a specified
project or organization on the Equinix Metal platform.
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.
If the PACKET_AUTH_TOKEN environment variable is set, the token flag is not required.
`,
MinArgs: 2,
MaxArgs: 2,
Discovery: []string{},
Flags: []plugin.Flag{
{
Long: "token",
Type: plugin.FlagType_String,
Default: "",
Desc: "Slack API token",
Desc: " Specifies the Equinix API token for authenticating the user",
},
},
},
Expand Down

0 comments on commit 9962297

Please sign in to comment.