mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-01 19:36:32 +02:00
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const (
|
|
// PomeriumZeroTokenEnv is the environment variable name for the API token.
|
|
//nolint: gosec
|
|
PomeriumZeroTokenEnv = "POMERIUM_ZERO_TOKEN"
|
|
)
|
|
|
|
func getToken(configFile string) string {
|
|
if token, ok := os.LookupEnv(PomeriumZeroTokenEnv); ok {
|
|
return token
|
|
}
|
|
|
|
if configFile != "" {
|
|
// load the token from the config file
|
|
v := viper.New()
|
|
v.SetConfigFile(configFile)
|
|
if v.ReadInConfig() == nil {
|
|
return v.GetString("pomerium_zero_token")
|
|
}
|
|
}
|
|
|
|
// we will fallback to normal pomerium if empty
|
|
return ""
|
|
}
|
|
|
|
func getConnectAPIEndpoint() string {
|
|
if endpoint := os.Getenv("CONNECT_SERVER_ENDPOINT"); endpoint != "" {
|
|
return endpoint
|
|
}
|
|
return "https://connect.pomerium.app"
|
|
}
|
|
|
|
func getClusterAPIEndpoint() string {
|
|
if endpoint := os.Getenv("CLUSTER_API_ENDPOINT"); endpoint != "" {
|
|
return endpoint
|
|
}
|
|
return "https://console.pomerium.app/cluster/v1"
|
|
}
|
|
|
|
func getOTELAPIEndpoint() string {
|
|
if endpoint := os.Getenv("POMERIUM_OTEL_ENDPOINT"); endpoint != "" {
|
|
return endpoint
|
|
}
|
|
return "https://telemetry.pomerium.app"
|
|
}
|