This repository is unmaintained since we have deprecated it internally, therefore it will not receive any new releases or contributions. We invite all people interested to look at updated forks.
This is a Dynamic Inventory for Ansible to be used together with MySQL.
It was written because we maintain a lot of servers and static inventory files did not meet our demand, and we like MySQL.
Simply call the script like the following
ansible-playbook -i mysql.py
# or
ansible -i mysql.py
Limitations also work
ansible-playbook -i mysql.py --limit foo.bar.com
ansible-playbook -i mysql.py --limit groupFoo
I won't explain the process of installing a database or creating the tables, see tables.sql
for the required MySQL structure.
Once setup rename mysql.ini.dist
to mysql.ini
to suit your needs, if you don't want to use caching just put it on 0.
In the table group
you create the groups you need and their variables,
In the table host
under host
you place the IP/DNS for the system.
Under hostname
you can fill in a value, this will be presented as a variable inventory_hostname
during the play.
You can modify the name of this Fact variable by changing the facts_hostname_var
variable in my mysql.ini
.
The table hostgroups
maps the relation between host
and group
using two FOREIGN KEYS
.
Groups can have other groups as children, use the table childgroups
.
This applies to host
and group
respectively.
If no variables are needed either NULL it (actual MySQL NULL
not the string
) or use {}
.
# Copyright (c) 2015 Productsup GmbH, Yorick Terweijden yt@products-up.de
#
# As it is mostly based on the original Cobbler Dynamic Inventory
# https://github.com/ansible/ansible/blob/devel/contrib/inventory/cobbler.py
# the same license, the GPL-3 applies.
The GPL-3 can be found under the link.