|
|
|
@ -150,7 +150,7 @@ def cache_available(config):
|
|
|
|
|
|
|
|
|
|
def generate_inv_from_api(config):
|
|
|
|
|
try:
|
|
|
|
|
inventory['all'] = copy.deepcopy(EMPTY_GROUP)
|
|
|
|
|
inventory['scaleway'] = copy.deepcopy(EMPTY_GROUP)
|
|
|
|
|
|
|
|
|
|
if config.has_option('auth', 'api_token'):
|
|
|
|
|
auth_token = config.get('auth', 'api_token')
|
|
|
|
@ -186,7 +186,7 @@ def generate_inv_from_api(config):
|
|
|
|
|
if region not in inventory:
|
|
|
|
|
inventory[region] = copy.deepcopy(EMPTY_GROUP)
|
|
|
|
|
inventory[region]['children'].append(hostname)
|
|
|
|
|
inventory['all']['children'].append(hostname)
|
|
|
|
|
inventory['scaleway']['children'].append(hostname)
|
|
|
|
|
inventory[hostname] = []
|
|
|
|
|
inventory[hostname].append(ip)
|
|
|
|
|
|
|
|
|
@ -194,7 +194,7 @@ def generate_inv_from_api(config):
|
|
|
|
|
except Exception:
|
|
|
|
|
# Return empty hosts output
|
|
|
|
|
traceback.print_exc()
|
|
|
|
|
return {'all': {'hosts': []}, '_meta': {'hostvars': {}}}
|
|
|
|
|
return {'scaleway': {'hosts': []}, '_meta': {'hostvars': {}}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_inventory(config):
|
|
|
|
|