mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* Update README Let contributors know that docs will now be located in UDR * Add comments to each mdx doc Comment has been added to all mdx docs that are not partials * chore: added changelog changelog check failure * wip: removed changelog * Fix content errors * Doc spacing * Update website/content/docs/deploy/kubernetes/vso/helm.mdx Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> --------- Co-authored-by: jonathanfrappier <92055993+jonathanfrappier@users.noreply.github.com> Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com>
104 lines
2.2 KiB
Plaintext
104 lines
2.2 KiB
Plaintext
---
|
|
layout: docs
|
|
page_title: "agent - Vault CLI"
|
|
description: >-
|
|
Use vault agent to start an instance of Vault Agent.
|
|
---
|
|
|
|
> [!IMPORTANT]
|
|
> **Documentation Update:** Product documentation, which were located in this repository under `/website`, are now located in [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs), colocated with all other product documentation. Contributions to this content should be done in the `web-unified-docs` repo, and not this one. Changes made to `/website` content in this repo will not be reflected on the developer.hashicorp.com website.
|
|
|
|
# `vault agent`
|
|
|
|
Start an instance of Vault Agent.
|
|
|
|
<CodeBlockConfig hideClipboard>
|
|
|
|
```shell-session
|
|
$ vault agent -config <config_file>
|
|
|
|
$ vault agent [-help | -h]
|
|
```
|
|
|
|
</CodeBlockConfig>
|
|
|
|
## Description
|
|
|
|
`vault agent` start an instance of Vault Agent, which automatically
|
|
authenticates and fetches secrets for client applications.
|
|
|
|
<Tip title="Related API endpoints">
|
|
|
|
**None**
|
|
|
|
</Tip>
|
|
|
|
## Command arguments
|
|
|
|
None.
|
|
|
|
## Command options
|
|
|
|
None.
|
|
|
|
## Command flags
|
|
|
|
<br />
|
|
|
|
@include 'cli/agent/flags/config.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/agent/flags/exit-after-auth.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-file.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-format.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-level.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-rotate-bytes.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-rotate-duration.mdx'
|
|
|
|
<br /><hr /><br />
|
|
|
|
@include 'cli/shared/flags/log-rotate-max-files.mdx'
|
|
|
|
## Standard flags
|
|
|
|
<br />
|
|
|
|
@include 'cli/standard-settings/all-standard-flags-but-format.mdx'
|
|
|
|
## Examples
|
|
|
|
Start Vault Agent with a single configuration file:
|
|
|
|
```shell-session
|
|
$ vault agent -config=/etc/vault/agent/config.hcl
|
|
```
|
|
|
|
Start Vault Agent with a two discrete configuration files:
|
|
|
|
```shell-session
|
|
$ vault agent \
|
|
-config=/etc/vault/agent/base-config.hcl \
|
|
-config=/etc/vault/agent/auto-auth-config.hcl
|
|
```
|
|
|
|
Start Vault Agent with a set of configuration files under the `` directory:
|
|
|
|
```shell-session
|
|
$ vault agent -config=/etc/vault/agent/config-files/
|
|
``` |