mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			510 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			510 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package config
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/hashicorp/vault/command/token"
 | 
						|
)
 | 
						|
 | 
						|
// DefaultTokenHelper returns the token helper that is configured for Vault.
 | 
						|
func DefaultTokenHelper() (token.TokenHelper, error) {
 | 
						|
	config, err := LoadConfig("")
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
 | 
						|
	path := config.TokenHelper
 | 
						|
	if path == "" {
 | 
						|
		return token.NewInternalTokenHelper()
 | 
						|
	}
 | 
						|
 | 
						|
	path, err = token.ExternalTokenHelperPath(path)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return &token.ExternalTokenHelper{BinaryPath: path}, nil
 | 
						|
}
 |