ExtConfigProvider v1.0.0 ExtConfigProvider.MergeStrategy.Default View Source
Strategy to merge the retrieved secrets as a keyword list into the current configuration.
Link to this section Summary
Link to this section Functions
Example
iex> existing_config = [toplevel: [a: 1]] iex> new_config = [toplevel: ["Some.Module": "config"]] iex> ExtConfigProvider.MergeStrategy.Default.apply(new_config, existing_config, []) [toplevel: [a: 1, "Some.Module": "config"]]