https://github.com/boyvinall/aws-list
Prints details of (almost) all your AWS resources
https://github.com/boyvinall/aws-list
aws
Last synced: 2 months ago
JSON representation
Prints details of (almost) all your AWS resources
- Host: GitHub
- URL: https://github.com/boyvinall/aws-list
- Owner: boyvinall
- Created: 2017-05-26T13:30:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-26T13:32:18.000Z (about 9 years ago)
- Last Synced: 2025-07-05T17:09:31.763Z (12 months ago)
- Topics: aws
- Language: Python
- Size: 0 Bytes
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# aws-list
This script enumerates all AWS resources across all zones and prints details.
Useful for you to check you don't have something lurking in your account
that you'd forgotten about.
You'll need to create yourself a skew config file e.g. `~/.skew`, something like this:
```
---
accounts:
"":
profile: default
```
where `` is the numeric account ID that you can find from your "My Account"
page in the AWS web console.
You'll also need an AWS credentials file `~/.aws/credentials` something like this:
```
[default]
aws_access_key_id =
aws_secret_access_key =
region =
```
**NB:** Credit for this script goes to [Micheal Holtby](https://stackoverflow.com/users/6416315/michael-holtby)
for [his stack overflow](https://stackoverflow.com/a/37599862)
answer. I just wanted to be able to find it again easily.