diff --git a/command/agent/command.go b/command/agent/command.go index 4e1c9e760..181eb8e38 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -490,12 +490,6 @@ func (c *Command) Run(args []string) int { info["log level"] = config.LogLevel info["server"] = strconv.FormatBool(config.Server.Enabled) info["region"] = fmt.Sprintf("%s (DC: %s)", config.Region, config.Datacenter) - if config.Atlas != nil && config.Atlas.Infrastructure != "" { - info["atlas"] = fmt.Sprintf("(Infrastructure: '%s' Join: %v)", - config.Atlas.Infrastructure, config.Atlas.Join) - } else { - info["atlas"] = "" - } // Sort the keys for output infoKeys := make([]string, 0, len(info))