An open API service indexing awesome lists of open source software.

https://github.com/maciejwalkowiak/s3-tags

Simple utility to find tagged and untagged S3 buckets.
https://github.com/maciejwalkowiak/s3-tags

s3

Last synced: 7 months ago
JSON representation

Simple utility to find tagged and untagged S3 buckets.

Awesome Lists containing this project

README

          

# S3 Tags

Simple utility to find tagged and untagged S3 buckets.

## How to install

```
npm install -g s3-tags
```

## Usage

List all buckets tagged with `aws:cloudformation:stack-name`:

```
$ s3-tags --tag=aws:cloudformation:stack-name
```

List all buckets and their tags tagged with `aws:cloudformation:stack-name`:

```
$ s3-tags --tag=aws:cloudformation:stack-name --details
```

List all buckets not tagged with `aws:cloudformation:stack-name`:

```
$ s3-tags --tag=aws:cloudformation:stack-name --not-tagged
```