Support passing instance filters to tower inventory src

* Switch ignore ssl errors to default on
* Application inventory source defaults for Tower src
This commit is contained in:
Matthew Jones
2017-10-25 16:56:26 -04:00
parent 6c597ad165
commit fdc7f58bb4
5 changed files with 15 additions and 3 deletions

View File

@@ -832,6 +832,16 @@ OVIRT4_HOST_FILTER = r'^.+$'
OVIRT4_EXCLUDE_EMPTY_GROUPS = True
OVIRT4_INSTANCE_ID_VAR = 'id'
# ---------------------
# ----- Tower -----
# ---------------------
TOWER_ENABLED_VAR = 'status'
TOWER_ENABLED_VALUE = 'enabled'
TOWER_GROUP_FILTER = r'^.+$'
TOWER_HOST_FILTER = r'^.+$'
TOWER_EXCLUDE_EMPTY_GROUPS = True
TOWER_INSTANCE_ID_VAR = 'id'
# ---------------------
# ----- Foreman -----
# ---------------------