I need to retrieve image tags from some repositories which are contained in a single registry.
Currently, I am making a separate request for each repository to list its images with the aws ecr list-images --repository-name foobar command.
Is there a way to make a single request to retrieve the images from multiple repositories (in the same registry)?
Thanks!