Merge pull request #908 from basecamp/ignorable-ssh-config

SSH: allow setting `config: false` to ignore local user `~/.ssh/config`
This commit is contained in:
Donal McBreen
2024-10-02 08:28:57 +01:00
committed by GitHub

View File

@@ -61,3 +61,10 @@ ssh:
# An array of strings, with each element of the array being # An array of strings, with each element of the array being
# a raw private key in PEM format. # a raw private key in PEM format.
key_data: [ "-----BEGIN OPENSSH PRIVATE KEY-----" ] 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