config

package
v0.23.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2024 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type APIKeyCacheConfig added in v0.20.0

type APIKeyCacheConfig struct {
	SyncInterval                  time.Duration `yaml:"syncInterval"`
	UserManagerServerInternalAddr string        `yaml:"userManagerServerInternalAddr"`
}

APIKeyCacheConfig is the API key cache configuration.

type Config

type Config struct {
	InternalGRPCPort int `yaml:"internalGrpcPort"`

	IssuerURL string `yaml:"issuerUrl"`

	APIKeyCacheConfig APIKeyCacheConfig `yaml:"apiKeyCache"`

	Debug DebugConfig `yaml:"debug"`
}

Config is the configuration.

func Parse

func Parse(path string) (Config, error)

Parse parses the configuration file at the given path, returning a new Config struct.

func (*Config) Validate

func (c *Config) Validate() error

Validate validates the configuration.

type DebugConfig

type DebugConfig struct {
	// UserOrgMap maps a registered user(email) to an organization name.
	UserOrgMap map[string]string `yaml:"userOrgMap"`
	// OrgRoleMap maps an organization name to a role name.
	OrgRoleMap map[string]string `yaml:"orgRoleMap"`
	// RoleScopesMap maps a role name to a list of scopes.
	RoleScopesMap map[string][]string `yaml:"roleScopesMap"`

	// APIKeyRole is the role name associated with the API key.
	APIKeyRole string `yaml:"apiKeyRole"`
}

DebugConfig specifies the debug configurations.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL