Last active
April 23, 2024 20:53
-
-
Save devynspencer/2bcca0a7654168ef454f to your computer and use it in GitHub Desktop.
Use FreeIPA hostgroups as a dynamic inventory source for Ansible. Badass.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import argparse | |
import json | |
from ipalib import api | |
def initialize(): | |
''' | |
This function initializes the FreeIPA/IPA API. This function requires | |
no arguments. A kerberos key must be present in the users keyring in | |
order for this to work. | |
''' | |
api.bootstrap(context='cli') | |
api.finalize() | |
try: | |
api.Backend.rpcclient.connect() | |
except AttributeError: | |
api.Backend.xmlclient.connect() #FreeIPA < 4.0 compatibility | |
return api | |
def list_groups(api): | |
''' | |
This function prints a list of all host groups. This function requires | |
one argument, the FreeIPA/IPA API object. | |
''' | |
inventory = {} | |
hostvars={} | |
meta={} | |
result = api.Command.hostgroup_find()['result'] | |
for hostgroup in result: | |
# Get direct and indirect members (nested hostgroups) of hostgroup | |
members = [] | |
if 'member_host' in hostgroup: | |
members = [host for host in hostgroup['member_host']] | |
if 'memberindirect_host' in hostgroup: | |
members += (host for host in hostgroup['memberindirect_host']) | |
inventory[hostgroup['cn'][0]] = {'hosts': [host for host in members]} | |
for member in members: | |
hostvars[member] = {} | |
inventory['_meta'] = {'hostvars': hostvars} | |
inv_string = json.dumps(inventory, indent=1, sort_keys=True) | |
print(inv_string) | |
return None | |
def parse_args(): | |
''' | |
This function parses the arguments that were passed in via the command line. | |
This function expects no arguments. | |
''' | |
parser = argparse.ArgumentParser(description='Ansible FreeIPA/IPA inventory module') | |
group = parser.add_mutually_exclusive_group(required=True) | |
group.add_argument('--list', action='store_true', help='List active servers') | |
group.add_argument('--host', help='List details about the specified host') | |
return parser.parse_args() | |
def print_host(host): | |
''' | |
This function is really a stub, it could return variables to be used in | |
a playbook. However, at this point there are no variables stored in | |
FreeIPA/IPA. | |
Expects one string, the hostname to lookup variables for. | |
''' | |
print(json.dumps({})) | |
return None | |
if __name__ == '__main__': | |
args = parse_args() | |
if args.host: | |
print_host(args.host) | |
elif args.list: | |
api = initialize() | |
list_groups(api) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've reworked this to handle bot Kerberos authentication using
ipalib
and using HTTPS authentication usingpython_freeipa
https://github.com/Aethylred/ansible/blob/devel/contrib/inventory/freeipa.py
I think I've got an Inventory plugin done too.