#include <userver/storages/secdist/component.hpp>
Component that stores security related data (keys, passwords, ...).
The component must be configured in service config.
Secdist requires a provider storages::secdist::SecdistProvider You can implement your own or use components::DefaultSecdistProvider
secdist: # Component that stores configuration of hosts and passwords
provider: default-secdist-provider
default-secdist-provider: # Component that loads configuration of hosts and passwords
config: /etc/redis_service/secure_data.json # Values are supposed to be stored in this file
missing-ok: true # ... but if the file is missing it is still ok
environment-secrets-key: SECDIST_CONFIG # ... values will be loaded from this environment value
Name | Description | Default value |
---|---|---|
provider | optional secdist provider component name | 'default-secdist-provider' |
config | path to the config file with data | '' |
format | config format, either json or yaml | 'json' |
missing-ok | do not terminate components load if no file found by the config option | false |
environment-secrets-key | name of environment variable from which to load additional data | - |
update-period | period between data updates in utils::StringToDuration() suitable format ('0s' for no updates) | 0s |
blocking-task-processor | name of task processor for background blocking operations | – |
Definition at line 42 of file component.hpp.
Public Member Functions | |
Secdist (const ComponentConfig &, const ComponentContext &) | |
const storages::secdist::SecdistConfig & | Get () const |
rcu::ReadablePtr< storages::secdist::SecdistConfig > | GetSnapshot () const |
storages::secdist::Secdist & | GetStorage () |
![]() | |
LoggableComponentBase (const ComponentConfig &, const ComponentContext &) | |
LoggableComponentBase (LoggableComponentBase &&)=delete | |
LoggableComponentBase (const LoggableComponentBase &)=delete | |
~LoggableComponentBase () override=default | |
ComponentHealth | GetComponentHealth () const override |
void | OnLoadingCancelled () override |
void | OnAllComponentsLoaded () override |
void | OnAllComponentsAreStopping () override |
Static Public Member Functions | |
static yaml_config::Schema | GetStaticConfigSchema () |
![]() | |
static yaml_config::Schema | GetStaticConfigSchema () |
Static Public Attributes | |
static constexpr std::string_view | kName = "secdist" |
The default name of components::Secdist. | |