mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 18:23:09 +00:00
The list_elbs call to boto doesn't use any pagination, so any time there are more ELBs than the API page size, this module will fail. This change uses the `next_token` attribute of `ResultSet` to check if there are still more ELBs to return. Fixes #21361