fix: include app arg in docs
continuous-integration/drone/push Build is passing Details

Follow up to bd92c52eed.
This commit is contained in:
decentral1se 2021-11-02 14:54:53 +01:00
parent ab02c5f0dd
commit 9b704b002b
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ var appSecretInsertCommand = &cli.Command{
Aliases: []string{"i"},
Usage: "Insert secret",
Flags: []cli.Flag{internal.PassFlag},
ArgsUsage: "<secret-name> <version> <data>",
ArgsUsage: "<app> <secret-name> <version> <data>",
Description: `
This command inserts a secret into an app environment.
@ -109,7 +109,7 @@ environment. Typically, you can let Abra generate them for you on app creation
Example:
abra app myapp secret insert db_pass v1 mySecretPassword
abra app secret insert myapp db_pass v1 mySecretPassword
`,
Action: func(c *cli.Context) error {
@ -143,13 +143,13 @@ var appSecretRmCommand = &cli.Command{
Usage: "Remove a secret",
Aliases: []string{"rm"},
Flags: []cli.Flag{allSecretsFlag, internal.PassFlag},
ArgsUsage: "<secret-name>",
ArgsUsage: "<app> <secret-name>",
Description: `
This command removes a secret from an app environment.
Example:
abra app myapp secret remove db_pass
abra app secret remove myapp db_pass
`,
Action: func(c *cli.Context) error {