def avail_locations(conn=None, call=None): """ Return a list of locations """ if call == "action": raise SaltCloudSystemExit( "The avail_locations function must be called with " "-f or --function, or with the --list-locations option" ) if conn is None: conn = get_conn() endpoints = nova.get_entry(conn.get_catalog(), "type", "compute")["endpoints"] ret = {} for endpoint in endpoints: ret[endpoint["region"]] = endpoint return ret
def avail_locations(conn=None, call=None): ''' Return a list of locations ''' if call == 'action': raise SaltCloudSystemExit( 'The avail_locations function must be called with ' '-f or --function, or with the --list-locations option') if conn is None: conn = get_conn() endpoints = nova.get_entry(conn.get_catalog(), 'type', 'compute')['endpoints'] ret = {} for endpoint in endpoints: ret[endpoint['region']] = endpoint return ret
def avail_locations(conn=None, call=None): ''' Return a list of locations ''' if call == 'action': raise SaltCloudSystemExit( 'The avail_locations function must be called with ' '-f or --function, or with the --list-locations option' ) if conn is None: conn = get_conn() endpoints = nova.get_entry(conn.get_catalog(), 'type', 'compute')['endpoints'] ret = {} for endpoint in endpoints: ret[endpoint['region']] = endpoint return ret