サーチ…


備考

動的インベントリの環境変数は機能しません。

"ansible_ssh_private_key_file": $HOME/.ssh/key.pem"

動的インベントリサーバ側で$HOMEなどが渡された場合は、クライアントコード(Python)で変数を置き換えます。

json_input.replace("$HOME", os.environ.get("HOME"))

ログイン資格情報による動的インベントリ

ダイナミックインベントリをansible-playbookansible-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