ansible
Dynamisches Inventar
Suche…
Bemerkungen
Umgebungsvariablen im dynamischen Inventar funktionieren nicht, z
"ansible_ssh_private_key_file": $HOME/.ssh/key.pem"
Wenn der Dynamic-Inventory-Server beispielsweise $HOME
durchläuft, ersetzen Sie die Variable im Clientcode (Python):
json_input.replace("$HOME", os.environ.get("HOME"))
Dynamisches Inventar mit Anmeldeinformationen
Dynamisches Inventar an ansible-playbook
:
ansible-playbook -i inventory/dyn.py -l targethost my_playbook.yml
python inventory/dyn.py
sollte so etwas drucken:
{
"_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
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow