Packages

Elixir-native host management with inspectable plans, package locks, systemd isolation, and remote bootstrap.

Current section

Files

Jump to
host_kit lib host_kit ingress tls.ex
Raw

lib/host_kit/ingress/tls.ex

defmodule HostKit.Ingress.TLS do
@moduledoc "Inspectable ingress TLS termination declaration."
@type t :: %__MODULE__{mode: :auto | :off | :manual, email: String.t() | nil, meta: map()}
defstruct mode: :auto, email: nil, meta: %{}
end