- Add Vault AppRole and Ansible integration for certificates - Configure policies and secret engines - Add comprehensive documentation
13 lines
231 B
Smarty
Executable File
13 lines
231 B
Smarty
Executable File
#!/usr/bin/env bash
|
|
#
|
|
echo "Setting SSH Key"
|
|
#
|
|
ssh-add ~/.ssh/id_ed25519
|
|
|
|
#
|
|
echo "Adding vsphere nodes hostnames to known hosts"
|
|
%{ for hostname in vsphere_vm_name ~}
|
|
ssh-keyscan -H ${hostname} >> ~/.ssh/known_hosts
|
|
%{ endfor ~}
|
|
|