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
21 lines
668 B
Plaintext
21 lines
668 B
Plaintext
---
|
|
layout: docs
|
|
page_title: Vault Agent Auto-Auth JWT Method
|
|
sidebar_title: JWT
|
|
description: JWT Method for Vault Agent Auto-Auth
|
|
---
|
|
|
|
# Vault Agent Auto-Auth JWT Method
|
|
|
|
The `jwt` method reads in a JWT from a file and sends it to the [JWT Auth
|
|
method](https://www.vaultproject.io/docs/auth/jwt.html). Since JWTs often have
|
|
limited lifetime, it constantly watches for a new JWT to be written, and when
|
|
found it will immediately ingress this value, delete the file, and use the new
|
|
JWT to perform a reauthentication.
|
|
|
|
## Configuration
|
|
|
|
- `path` `(string: required)` - The path to the JWT file
|
|
|
|
- `role` `(string: required)` - The role to authenticate against on Vault
|