You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.Description=`A CLI tool for interacting with Gruntwork Houston that you can use to authenticate to AWS on the CLI and to SSH to your EC2 Instances.`
Usage: "The TCP port the http server is running on",
112
114
}
113
115
114
-
app.Commands= []cli.Command{
116
+
app.Commands= []*cli.Command{
115
117
{
116
118
Name: "exec",
117
119
Usage: "Execute a command with temporary AWS credentials obtained by logging into Gruntwork Houston",
@@ -130,7 +132,7 @@ Examples:
130
132
houston exec prod -- terraform apply
131
133
houston exec stage -- packer build server.json`,
132
134
Action: noop,
133
-
Flags: []cli.Flag{configFlag, portFlag},
135
+
Flags: []cli.Flag{&configFlag, &portFlag},
134
136
},
135
137
{
136
138
Name: "ssh",
@@ -155,15 +157,15 @@ Examples:
155
157
156
158
houston ssh grunt@11.22.33.44`,
157
159
Action: noop,
158
-
Flags: []cli.Flag{configFlag, portFlag},
160
+
Flags: []cli.Flag{&configFlag, &portFlag},
159
161
},
160
162
{
161
163
Name: "configure",
162
164
Usage: "Configure houston CLI options.",
163
165
UsageText: "houston configure [options]",
164
166
Description: `The configure command can be used to setup or update the houston configuration file. When you run this command with no arguments, it will prompt you with the minimum required options for getting the CLI up and running. The prompt will include the current value as a default if the configuration file exists.`,
0 commit comments