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.
- Host: GitHub
- URL: https://github.com/maciejwalkowiak/s3-tags
- Owner: maciejwalkowiak
- License: mit
- Created: 2018-02-18T22:37:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T23:07:50.000Z (over 7 years ago)
- Last Synced: 2025-01-07T22:53:40.595Z (9 months ago)
- Topics: s3
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
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
```