Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/stackit_argus_grafana_describe.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stackit argus grafana describe INSTANCE_ID [flags]

```
-h, --help Help for "stackit argus grafana describe"
--show-password Show the initial admin password in the "pretty" output format
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_logme_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stackit logme credentials create [flags]
```
-h, --help Help for "stackit logme credentials create"
--instance-id string Instance ID
--show-password Show password in output
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_mariadb_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stackit mariadb credentials create [flags]
```
-h, --help Help for "stackit mariadb credentials create"
--instance-id string Instance ID
--show-password Show password in output
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_opensearch_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stackit opensearch credentials create [flags]
```
-h, --help Help for "stackit opensearch credentials create"
--instance-id string Instance ID
--show-password Show password in output
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_rabbitmq_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stackit rabbitmq credentials create [flags]
```
-h, --help Help for "stackit rabbitmq credentials create"
--instance-id string Instance ID
--show-password Show password in output
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion docs/stackit_redis_credentials_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stackit redis credentials create [flags]
```
-h, --help Help for "stackit redis credentials create"
--instance-id string Instance ID
--show-password Show password in output
-s, --show-password Show password in output
```

### Options inherited from parent commands
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/argus/grafana/describe/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
}

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Bool(showPasswordFlag, false, `Show the initial admin password in the "pretty" output format`)
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")
}

func parseInput(p *print.Printer, cmd *cobra.Command, inputArgs []string) (*inputModel, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/logme/credentials/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewCmd(p *print.Printer) *cobra.Command {

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Var(flags.UUIDFlag(), instanceIdFlag, "Instance ID")
cmd.Flags().Bool(showPasswordFlag, false, "Show password in output")
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")

err := flags.MarkFlagsRequired(cmd, instanceIdFlag)
cobra.CheckErr(err)
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/mariadb/credentials/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewCmd(p *print.Printer) *cobra.Command {

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Var(flags.UUIDFlag(), instanceIdFlag, "Instance ID")
cmd.Flags().Bool(showPasswordFlag, false, "Show password in output")
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")

err := flags.MarkFlagsRequired(cmd, instanceIdFlag)
cobra.CheckErr(err)
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/opensearch/credentials/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewCmd(p *print.Printer) *cobra.Command {

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Var(flags.UUIDFlag(), instanceIdFlag, "Instance ID")
cmd.Flags().Bool(showPasswordFlag, false, "Show password in output")
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")

err := flags.MarkFlagsRequired(cmd, instanceIdFlag)
cobra.CheckErr(err)
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/rabbitmq/credentials/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewCmd(p *print.Printer) *cobra.Command {

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Var(flags.UUIDFlag(), instanceIdFlag, "Instance ID")
cmd.Flags().Bool(showPasswordFlag, false, "Show password in output")
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")

err := flags.MarkFlagsRequired(cmd, instanceIdFlag)
cobra.CheckErr(err)
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/redis/credentials/create/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewCmd(p *print.Printer) *cobra.Command {

func configureFlags(cmd *cobra.Command) {
cmd.Flags().Var(flags.UUIDFlag(), instanceIdFlag, "Instance ID")
cmd.Flags().Bool(showPasswordFlag, false, "Show password in output")
cmd.Flags().BoolP(showPasswordFlag, "s", false, "Show password in output")

err := flags.MarkFlagsRequired(cmd, instanceIdFlag)
cobra.CheckErr(err)
Expand Down