Packages
confex_parameter_store
1.1.0
An adapter for Confex to add support for fetching config values from the AWS Parameter Store.
Current section
Files
Jump to
Current section
Files
lib/confex/paramater_store/provider_mock.ex
defmodule Confex.ParameterStoreMock do
@behaviour Confex.ParameterStore.Provider
def get_parameter(path) do
{:ok, path}
end
def get_parameters_by_path(path) do
{:ok, [example: path]}
end
end