ansible
동적 인벤토리
수색…
비고
동적 인벤토리의 환경 변수가 작동하지 않습니다. fe
"ansible_ssh_private_key_file": $HOME/.ssh/key.pem"
동적 인벤토리 서버 측에서 $HOME
을 전달하는 경우 클라이언트 코드 (Python)의 변수를 다음과 같이 바꿉니다.
json_input.replace("$HOME", os.environ.get("HOME"))
로그인 자격 증명을 사용한 동적 인벤토리
역동적 인 인벤토리를 ansible-playbook
.
ansible-playbook -i inventory/dyn.py -l targethost my_playbook.yml
python inventory/dyn.py
다음과 같은 것을 출력해야합니다 :
{
"_meta": {
"hostvars": {
"10.1.0.10": {
"ansible_user": "vagrant",
"ansible_ssh_private_key_file": "/home/mrtuovinen/.ssh/id_rsa",
"ansible_port": 22
},
"10.1.0.11": {
"ansible_user": "ubuntu",
"ansible_ssh_private_key_file": "/home/mrtuovinen/.ssh/id_rsa",
"ansible_port": 22
},
"10.1.0.12": {
"ansible_user": "steve",
"ansible_ssh_private_key_file": "/home/mrtuovinen/.ssh/key.pem",
"ansible_port": 2222
}
}
},
"vagrantbox": [
"10.1.0.10"
],
"ubuntubox": [
"10.1.0.11"
],
"osxbox": [
"10.1.0.12"
]
}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow