diff --git a/website/content/docs/integrations/vault-integration.mdx b/website/content/docs/integrations/vault-integration.mdx index b39c8252e..fd897c29a 100644 --- a/website/content/docs/integrations/vault-integration.mdx +++ b/website/content/docs/integrations/vault-integration.mdx @@ -57,8 +57,8 @@ $ vault auth enable jwt ``` Create a configuration file for the default Vault [Role][]. This configuration -maps each Nomad job to its own Vault user claim. You can set the `token_ttl` and -`token_policies` to whatever value is suitable for your environment. A +maps each Nomad job to its own Vault user claim. You can set the `token_period` +and `token_policies` to whatever value is suitable for your environment. A recommended policy is shown later. ```json @@ -71,7 +71,7 @@ recommended policy is shown later. "nomad_namespace": "nomad_namespace", "nomad_job_id": "nomad_job_id" }, - "token_ttl": "30m", + "token_period": "30m", "token_type": "service", "token_policies": ["nomad-workloads"] }