Use towervars to enable turning on remote tracking vars on Tower src

* This allows the local Tower to track enabled state and unique
  instance id for each host imported from the remote Tower
This commit is contained in:
Matthew Jones
2017-10-26 11:11:48 -04:00
parent 71e132ce0f
commit d282966aa1
3 changed files with 9 additions and 4 deletions

View File

@@ -835,12 +835,12 @@ OVIRT4_INSTANCE_ID_VAR = 'id'
# ---------------------
# ----- Tower -----
# ---------------------
TOWER_ENABLED_VAR = 'status'
TOWER_ENABLED_VALUE = 'enabled'
TOWER_ENABLED_VAR = 'remote_tower_enabled'
TOWER_ENABLED_VALUE = 'true'
TOWER_GROUP_FILTER = r'^.+$'
TOWER_HOST_FILTER = r'^.+$'
TOWER_EXCLUDE_EMPTY_GROUPS = True
TOWER_INSTANCE_ID_VAR = 'id'
TOWER_INSTANCE_ID_VAR = 'remote_tower_id'
# ---------------------
# ----- Foreman -----