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_load-balancer_observability-credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Provides functionality for Load Balancer observability credentials

### Synopsis

Provides functionality for Load Balancer observability credentials. These commands can be used to store and update existing credentials, which are valid to be used for Load Balancer Observability. This means, e.g. when using Argus, that credentials first must be created for that Argus instance (by using "stackit argus credentials create") and then can be managed for a Load Balancer by using the commands in this group.
Provides functionality for Load Balancer observability credentials. These commands can be used to store and update existing credentials, which are valid to be used for Load Balancer observability. This means, e.g. when using Argus, first of all these credentials must be created for that Argus instance (by using "stackit argus credentials create") and then can be managed for a Load Balancer by using the commands in this group.

```
stackit load-balancer observability-credentials [flags]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ stackit load-balancer observability-credentials delete CREDENTIALS_REF [flags]

```
Delete observability credentials with reference "credentials-xxx" for Load Balancer
$ stackit loadbalancer credentials delete credentials-xxx
$ stackit load-balancer observability-credentials delete credentials-xxx
```

### Options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ stackit load-balancer observability-credentials update [flags]

```
Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx". The password is entered using the terminal
$ stackit load-balancer observability-credentials update credentials-xxx --password
$ stackit load-balancer observability-credentials update credentials-xxx

Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx", by providing it in the flag
$ stackit load-balancer observability-credentials update credentials-xxx --password new-pwd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
Example: examples.Build(
examples.NewExample(
`Delete observability credentials with reference "credentials-xxx" for Load Balancer`,
"$ stackit loadbalancer credentials delete credentials-xxx"),
"$ stackit load-balancer observability-credentials delete credentials-xxx"),
),
RunE: func(cmd *cobra.Command, args []string) error {
ctx := context.Background()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func NewCmd(p *print.Printer) *cobra.Command {
Example: examples.Build(
examples.NewExample(
`Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx". The password is entered using the terminal`,
"$ stackit load-balancer observability-credentials update credentials-xxx --password "),
"$ stackit load-balancer observability-credentials update credentials-xxx"),
examples.NewExample(
`Update the password of observability credentials of Load Balancer with credentials reference "credentials-xxx", by providing it in the flag`,
"$ stackit load-balancer observability-credentials update credentials-xxx --password new-pwd"),
Expand Down