Packages

An adapter for Confex to add support for fetching config values from the AWS Parameter Store.

Current section

Files

Jump to
confex_parameter_store lib confex paramater_store provider_mock.ex
Raw

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