Use Chef Knife with SDM
Last modified on March 24, 2023
When using the knife ssh
command, Knife reaches out to the Chef server with a query string, Chef responds back with a list of hosts that match that query string, and Knife then runs commands via SSH on all returned hosts. This document describes how to set up StrongDM SSH functionality to work with the knife ssh
command.
Configure all Chef-configured SSH hosts in StrongDM under the Servers page. Grant appropriate role-based access to these servers to the StrongDM users that will be using Knife.
At the command line of a system running the StrongDM client, run
sdm ssh config
. This will do two things:- Generate an SSH config file in
$HOME/.sdm/ssh_config
containing entries for each SSH server the user has rights to - Add a line to the top of
$HOME/.ssh/config
to reference the generated file
Thesdm ssh config
command will generate anssh_config
file based on how the SSH server is configured within StrongDM. Keep in mind that Knife resolves IP addresses on the client side, so in order for StrongDM to properly intercept those SSH calls, it must be aware of the hostname of the SSH server as seen by the Knife client. In practice, this means setting up the SSH servers in the StrongDM UI with the hostname that Knife resolves and uses.- Generate an SSH config file in
Connect to the servers you want to access using
sdm
: either click on each one in the UI and ensure the green lightning bolt icon is visible next to each, or runsdm connect sdm_server_name
for each (or optionally,sdm connect --all
).To test, run a Knife command that will reference one specific host that is now in your custom
ssh_config
. If you have not explicitly connected to that host, you should get aConnection refused
error.
Not connected via sdm
$ sdm status
SSH SERVER STATUS PORT TYPE
chefnode1 not connected 61927 ssh
$ knife ssh 'name:node1-ubuntu' 'echo hello'
WARNING: Failed to connect to ec2-xx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com -- Errno::ECONNREFUSED: Connection refused - connect(2) for [::1]:61927
Connected via sdm
$ sdm connect chefnode1
connect successful
$ sdm status
SSH SERVER STATUS PORT TYPE
chefnode1 connected 61927 ssh
$ knife ssh 'name:node1-ubuntu' 'echo hello'
ec2-xx-xxx-xxx-xxx.us-west-2.compute.amazonaws.com hello