Ansible 플레이 북은 --key-file
명령 줄에서 ssh 연결에 사용되는 키를 지정할 수 있습니다 .
ansible-playbook -i hosts playbook.yml --key-file "~/.ssh/mykey.pem"
--key-file
명령 줄 에서 사용 하는 대신 플레이 북 파일에서이 키의 위치를 지정할 수 있습니까?
이 키의 위치를 var.yaml
파일 에 쓰고 싶기 때문에 vars_files:
.
다음은 내 구성의 일부입니다.
vars.yml 파일
key1: ~/.ssh/mykey1.pem
key2: ~/.ssh/mykey2.pem
playbook.yml 파일
---
- hosts: myHost
remote_user: ubuntu
key_file: {{ key1 }} # This is not a valid syntax in ansible. Does there exist this kind of directive which allows me to specify the ssh key used for this connection?
vars_files:
- vars.yml
tasks:
- name: Echo a hello message
command: echo hello
ansible_ssh_private_key_file
아래에 추가해 보았습니다 vars
. 하지만 내 컴퓨터에서는 작동하지 않습니다.
vars_files:
- vars.yml
vars:
ansible_ssh_private_key_file: "{{ key1 }}"
tasks:
- name: Echo a hello message
command: echo hello
나는 실행하는 경우 ansible-playbook
와 playbook.yml
위. 다음과 같은 오류가 발생했습니다.
TASK [Gathering Facts] ******************************************************************************************************************************
Using module file /usr/local/lib/python2.7/site-packages/ansible/modules/system/setup.py
<192.168.5.100> ESTABLISH SSH CONNECTION FOR USER: ubuntu
<192.168.5.100> SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no -o KbdInteractiveAuthentication=no -o PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey -o PasswordAuthentication=no -o User=ubuntu -o ConnectTimeout=10 -o ControlPath=/Users/myName/.ansible/cp/2d18691789 192.168.5.100 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
<192.168.5.100> (255, '', 'Permission denied (publickey).\r\n')
fatal: [192.168.5.100]: UNREACHABLE! => {
"changed": false,
"msg": "Failed to connect to the host via ssh: Permission denied (publickey).\r\n",
"unreachable": true
}
to retry, use: --limit @/Users/myName/playbook.retry
ssh 명령에서 내 키 파일의 이름을 찾을 수 없습니다. 이상 해요.
--private-key=~/.ssh/keys/id_rsa
작동 할 것이라고 생각 한다.