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