SamsonSecretPuller

Library to read secrets generated by the puller.

Installation

If available in Hex, the package can be installed as:

  1. Add samson_secret_puller to your list of dependencies in mix.exs:
```elixir
def deps do
  [{:samson_secret_puller, "~> 0.1.0"}]
end
```
  1. Ensure samson_secret_puller is started before your application:
```elixir
def application do
  [applications: [:samson_secret_puller]]
end
```
  1. Call fetch_secrets! to wait for the secrets to appear:
```elixir
secrets = SamsonSecretPuller.fetch_secrets!
```