From 1a403fe08536a75549edb76360d019f118964ae0 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 16 Jan 2025 16:34:49 -0800 Subject: [PATCH] update vault token warning from 1.9->1.10 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 28dd0ebd3a3..96c75e83688 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -651,7 +651,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) } }