Metadata-Version: 2.1
Name: aws-ami-delete
Version: 0.0.2
Summary: Delete AMIs - optionally from a packer manifest.
Home-page: https://github.com/lifeofguenter/aws-ami-delete
Author: Günter Grodotzki
Author-email: gunter@grodotzki.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# aws-ami-delete

[![Build Status](https://travis-ci.com/lifeofguenter/aws-ami-delete.svg?branch=main)](https://travis-ci.org/lifeofguenter/aws-ami-delete)
[![PyPI](https://img.shields.io/pypi/v/aws-ami-delete.svg)](https://pypi.org/project/aws-ami-delete/)
[![License](https://img.shields.io/github/license/lifeofguenter/aws-ami-delete.svg)](LICENSE)

A simple CLI tool to delete AMIs (including their corresponding snapshots),
optionally read from a [packer manifest](https://www.packer.io/docs/post-processors/manifest).

## Install

```bash
$ pip install --user aws-ami-delete
```

## Usage

Either specify AMI IDs as args:

```bash
$ aws-ami-delete i-124566 i-56789
```

Or, specify the path to the manifest file:

```bash
$ aws-ami-delete ./manifest.json
```


