From 190f4fba2844ddebba5ca9411f921ec61e215052 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Tue, 13 Aug 2024 12:46:50 -0700 Subject: [PATCH] SSH: allow setting `config: false` to ignore local user `~/.ssh/config` --- lib/kamal/configuration/docs/ssh.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/kamal/configuration/docs/ssh.yml b/lib/kamal/configuration/docs/ssh.yml index 88fcd132..aa573b79 100644 --- a/lib/kamal/configuration/docs/ssh.yml +++ b/lib/kamal/configuration/docs/ssh.yml @@ -64,3 +64,10 @@ ssh: # An array of strings, with each element of the array being # a raw private key in PEM format. key_data: [ "-----BEGIN OPENSSH PRIVATE KEY-----" ] + + # Config + # + # Set to true to load the default OpenSSH config files (~/.ssh/config, + # /etc/ssh_config), to false ignore config files, or to a file path + # (or array of paths) to load specific configuration. Defaults to true. + config: true