mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-22 03:01:10 +01:00
* new documentation website * ci job adjustment * update to latest version on downloads page * remove transition-period scripts * add netlify toml file * fix docs patch * fix ci config? * revert go.mod changes * a couple last markdown formatting fixes
32 lines
918 B
Plaintext
32 lines
918 B
Plaintext
---
|
|
layout: docs
|
|
page_title: secrets disable - Command
|
|
sidebar_title: <code>disable</code>
|
|
description: |-
|
|
The "secrets disable" command disables an secrets engine at a given PATH. The
|
|
argument corresponds to the enabled PATH of the engine, not the TYPE! All
|
|
secrets created by this engine are revoked and its Vault data is removed.
|
|
---
|
|
|
|
# secrets disable
|
|
|
|
The `secrets disable` command disables an secrets engine at a given PATH. The
|
|
argument corresponds to the enabled PATH of the engine, not the TYPE! All
|
|
secrets created by this engine are revoked and its Vault data is removed.
|
|
|
|
Once an secrets engine is disabled, **all secrets generated via the secrets
|
|
engine are immediately revoked.**
|
|
|
|
## Examples
|
|
|
|
Disable the secrets engine enabled at aws/:
|
|
|
|
```text
|
|
$ vault secrets disable aws/
|
|
```
|
|
|
|
## Usage
|
|
|
|
There are no flags beyond the [standard set of flags](/docs/commands/index.html)
|
|
included on all commands.
|