Bulk Deleting Amazon ECR Repositories
Overview I had an opportunity to bulk delete Amazon ECR repositories, so here are my notes. Please exercise caution when running these commands. Creating a List of Repositories I referenced the following article. https://qiita.com/fk_2000/items/bffd3b1ad6f3ab109766 Run the following command. a w s e c r d e s c r i b e - r e p o s i t o r i e s o u t p u t j s o n | j q - r e " . r e p o s i t o r i e s [ ] . r e p o s i t o r y N a m e " > r e p o s i t o r y . l i s t On macOS, if you don’t have the jq command, install it with brew install jq. ...