Skip to content

Instantly share code, notes, and snippets.

@guskma
Last active March 8, 2024 01:04
Show Gist options
  • Save guskma/95fe57181ea15bb02a8cac3021466ebb to your computer and use it in GitHub Desktop.
Save guskma/95fe57181ea15bb02a8cac3021466ebb to your computer and use it in GitHub Desktop.
tailscaleのホスト一覧からAnsibleのダイナミックインベントリを作るやつ
#!/usr/bin/env python3
### usage
# ansible-inventory -i inventory.py --list
import subprocess
import json
tailscale = '/mnt/c/Program Files/Tailscale/tailscale.exe'
stream = subprocess.run([ tailscale, "status", "--json" ], capture_output=True)
hosts = json.loads(stream.stdout)
hostvars = {}
groups = {}
for h in hosts["Peer"].values():
if "tag:client" not in h["Tags"]:
hostvars[h["HostName"]] = {
"ansible_ssh_host": h["DNSName"],
"tags": h["Tags"]
}
for t in h["Tags"]:
if t not in groups:
groups[t] = { "hosts": [] }
groups[t]["hosts"].append(h["HostName"])
output = json.dumps({
"_meta": {
"hostvars": hostvars
},
"all": {
"children": [ "ungrouped" ] + list(groups.keys())
}
} | groups)
print(output)

tailscaleのホスト一覧からAnsibleのダイナミックインベントリを作るやつ

概要

tailscale status --json コマンドで取得できるホスト情報を加工してAnsibleのダイナミックインベントリを作るやつです。

サーバがtailscaleに接続さえされていれば、Ansibleのインベントリを意識する必要がなくなる画期的なやつです。

  • tag:client が設定されているホストを除いたすべてのホストがインベントリに追加されます。
  • タグ名はグループ名に置き換えられて各ホストはグループ化されます。

使い方

  1. inventory.py をplaybookのルートディレクトリに保存
  2. もしかしたら chmod +x inventory.py する必要があるかもしれない。
  3. あとはいつも通り ansible-playbook -i inventory.py playbook.yml すればOK
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment