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.ex
Raw

lib/confex/paramater_store/provider.ex

defmodule Confex.ParameterStore.Provider do
@doc "Fetches a value"
@callback get_parameter(binary()) :: {:ok, binary()} | :error
@doc "Fetches values based on the path"
@callback get_parameters_by_path(binary()) :: {:ok, list()} | :error
end