使用CloudFormation删除包含带有图像的ECR的堆栈会导致失败消息:
The repository with name 'my-repo' in registry with id '123' cannot be deleted because it still contains images
CLI提供了一种使用--force
标志覆盖它的方法:
aws ecr delete-repository --repository-name my-repo --force
如何通过单独使用CloudFormation获得相同的结果?