14 lines
375 B
Elixir
14 lines
375 B
Elixir
# Copyright (c) 2024, Kry10 Limited. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: LicenseRef-Kry10
|
|
|
|
import Config
|
|
|
|
if System.get_env("TUNNEL_PEER_ENDPOINT") do
|
|
config :kos_manifest_systems, KosManifestSystems.Poukai,
|
|
tunnel_settings: [
|
|
peer_endpoint: System.get_env("TUNNEL_PEER_ENDPOINT"),
|
|
peer_public_key: System.get_env("TUNNEL_PEER_KEY")
|
|
]
|
|
end
|