From 63dacd2d6e13ac66f51ec077f33a52b67d9e70a2 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Fri, 17 Jan 2025 10:56:06 -0800 Subject: [PATCH] update vault token warning from 1.9->1.10 (#24884) Fixes #24847 --- command/agent/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/agent/command.go b/command/agent/command.go index 4b396efa4..4284d1e22 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -653,7 +653,7 @@ func (c *Command) setupAgent(config *Config, logger hclog.InterceptLogger, logOu for _, vault := range config.Vaults { if vault.Token != "" { - logger.Warn("Setting a Vault token in the agent configuration is deprecated and will be removed in Nomad 1.9. Migrate your Vault configuration to use workload identity.", "cluster", vault.Name) + logger.Warn("Setting a Vault token in the agent configuration is deprecated and will be removed in Nomad 1.10. Migrate your Vault configuration to use workload identity.", "cluster", vault.Name) } }