You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-12-17 23:48:13 +02:00
remove color output in tests for better readability in github actions bugfix: remove google as default provider for alpha options fix conversion flow for toml to yaml revert ginkgo color deactivation revert claim- and secret source back to pointers regenerate alpha config Signed-off-by: Jan Larwig <jan@larwig.com>
23 lines
743 B
Go
23 lines
743 B
Go
package util
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/options"
|
|
)
|
|
|
|
// GetSecretValue returns the value of the Secret from its source
|
|
func GetSecretValue(source *options.SecretSource) ([]byte, error) {
|
|
switch {
|
|
case len(source.Value) > 0 && source.FromEnv == "" && source.FromFile == "":
|
|
return []byte(source.Value), nil
|
|
case len(source.Value) == 0 && source.FromEnv != "" && source.FromFile == "":
|
|
return []byte(os.Getenv(source.FromEnv)), nil
|
|
case len(source.Value) == 0 && source.FromEnv == "" && source.FromFile != "":
|
|
return os.ReadFile(source.FromFile)
|
|
default:
|
|
return nil, errors.New("secret source is invalid: exactly one entry required, specify either value, fromEnv or fromFile")
|
|
}
|
|
}
|