tsnet: support TS_AUTH_KEY variant too

Signed-off-by: Maisem Ali <maisem@tailscale.com>
This commit is contained in:
Maisem Ali 2023-03-24 13:16:14 -07:00 committed by Maisem Ali
parent d2fd101eb4
commit d39a5e4417
1 changed files with 4 additions and 1 deletions

View File

@ -415,7 +415,10 @@ func (s *Server) getAuthKey() string {
if v := s.AuthKey; v != "" {
return v
}
return os.Getenv("TS_AUTHKEY")
if v := os.Getenv("TS_AUTHKEY"); v != "" {
return v
}
return os.Getenv("TS_AUTH_KEY")
}
func (s *Server) start() (reterr error) {