Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
BindAddr string `envconfig:"BIND_ADDR"`
GracefulShutdownTimeout time.Duration `envconfig:"GRACEFUL_SHUTDOWN_TIMEOUT"`
HealthCheckInterval time.Duration `envconfig:"HEALTHCHECK_INTERVAL"`
HealthCheckCriticalTimeout time.Duration `envconfig:"HEALTHCHECK_CRITICAL_TIMEOUT"`
ZebedeeURL string `envconfig:"ZEBEDEE_URL"`
EnablePrivateEndpoints bool `envconfig:"ENABLE_PRIVATE_ENDPOINTS"`
EnablePermissionsAuth bool `envconfig:"ENABLE_PERMISSIONS_AUTHZ"`
MongoConfig MongoConfig
}
Config represents service config for dp-topic-api
type MongoConfig ¶ added in v0.3.0
type MongoConfig struct {
BindAddr string `envconfig:"MONGODB_BIND_ADDR" json:"-"` // This line contains sensitive data and the json:"-" tells the json marshaller to skip serialising it.
Database string `envconfig:"MONGODB_TOPICS_DATABASE"`
Username string `envconfig:"MONGODB_USERNAME" json:"-"`
Password string `envconfig:"MONGODB_PASSWORD" json:"-"`
IsSSL bool `envconfig:"MONGODB_IS_SSL"`
TopicsCollection string `envconfig:"MONGODB_TOPICS_COLLECTION"`
ContentCollection string `envconfig:"MONGODB_CONTENT_COLLECTION"`
}
MongoConfig contains the config required to connect to MongoDB.
Click to show internal directories.
Click to hide internal directories.