1---
2# This file provides the configuration information for the Infoblox dynamic
3# inventory script that is used to dynamically pull host information from NIOS.
4# This file should be copied to /usr/local/etc/ansible/infoblox.yaml in order for the
5# dynamic script to find it.
6
7# Sets the provider arguments for authenticating to the Infoblox server to
8# retrieve inventory hosts.  Provider arguments can also be set using
9# environment variables.  Supported environment variables all start with
10# INFOBLOX_{{ name }}.  For instance, to set the host provider value, the
11# environment variable would be INFOBLOX_HOST.
12provider:
13  host: <SERVER_IP>
14  username: <USERNAME>
15  password: <PASSWORD>
16
17# Filters allow the dynamic inventory script to restrict the set of hosts that
18# are returned from the Infoblox server.
19filters:
20  # restrict returned hosts by extensible attributes
21  extattrs: {}
22
23  # restrict returned hosts to a specified DNS view
24  view: null
25