diff --git a/plugins/inventory/scaleway.py b/plugins/inventory/scaleway.py index fcd0a60..3f221eb 100644 --- a/plugins/inventory/scaleway.py +++ b/plugins/inventory/scaleway.py @@ -211,12 +211,6 @@ def _get_instances(self, client: "Client", filters: _Filters) -> List[_Host]: results: List[_Host] = [] for server in servers: - if filters.zones: - zones = [server.zone.startswith(region) for region in filters.zones] - - if any(zones): - continue - host = _Host( id=server.id, hostname=server.hostname,