
vault
List of commands for vault:
-
vault:tldr:296bb vault: Store a new secret in the vault, using the generic back-end called "secret".$ vault write secret/${hello} value=${world}try on your machineexplain this command
-
vault:tldr:7961d vault: Unseal (unlock) the vault, by providing one of the key shares needed to access the encrypted data store.$ vault unseal ${key-share-x}try on your machineexplain this command
-
vault:tldr:7c94a vault: Authenticate the CLI client against the Vault server, using an authentication token.$ vault auth ${authentication_token}try on your machineexplain this command
-
vault:tldr:8a1c6 vault: Connect to a Vault server and initialize a new encrypted data store.$ vault inittry on your machineexplain this command
-
vault:tldr:a0b1d vault: Read a specific field from the value.$ vault read -field=${field_name} secret/${hello}try on your machineexplain this command
-
vault:tldr:e29c2 vault: Read a value from the vault, using the generic back-end called "secret".$ vault read secret/${hello}try on your machineexplain this command
-
vault:tldr:fa27c vault: Seal (lock) the Vault server, by removing the encryption key of the data store from memory.$ vault sealtry on your machineexplain this command