delete

Description

Deletes a specified configuration. It prompts confirmation before actually deleting a configuration.

Synopsis

$ abeja config delete [OPTIONS] [NAME]

  Removes an existing configuration. If you want to delete the default
  configuration, run `abeja config delete`.

Options:
  -y, --yes, --assume-yes  Automatically respond yes to confirmation prompts;
                           assume "yes" as answer to all prompts and run non-
                           interactively.
  --help                   Show this message and exit.

Option

-y, --yes, --assume-yes

If this option enabled, automatically respond yes to confirmation prompts while deleting a credential.

Example

Deletes the default configuration

Command:

$ abeja config delete

Output:

The configuration "(default)" will be removed. Do you want to continue? [y/N]: y
[INFO]: The configuration "(default)" successfully deleted.

Deletes a named configuration

Command:

$ abeja config delete example

Output:

The configuration "example" will be removed. Do you want to continue? [y/N]: y
[INFO]: The configuration "example" successfully deleted.