Installs deployment private ssh key for GitHub on RHEL/CentOS or Debian/Ubuntu servers for the duration of the playbook. There is a handler to remove once finished.
None
This needs to be a base64 encoded string of your private ssh key.
ssh_private_key: Y29uZ3JhdHMgeW91IGRlY29kZWQgdGhpcyB0ZXh0IGhlcmVzIGEgY29va2llCg==
None.
- hosts: servers
become: yes
vars:
ssh_private_key: Y29uZ3JhdHMgeW91IGRlY29kZWQgdGhpcyB0ZXh0IGhlcmVzIGEgY29va2llCg==
roles:
- blackstar257.deploy
MIT
blackstar257