Nikos
Nikos

Reputation: 7551

How to list/view all created resources on AWS?

Is there a way list/view(graphically?) all created resources on amazon? All the db's users, pools etc.

The best way I can think of is to run each of the cli aws <resource> ls commands in a bash file.

What would be great would be to have a graphical tool that showed all the relationships. Is anyone aware of such a tool?

UPDATE

I decided to make my own start on this, currently its just on the cli, but might move to graphical output. Help needed!

https://github.com/QuantumInformation/aws-x-ray

Upvotes: 1

Views: 2078

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 270194

No, it is not possible to easily list all services created on AWS.

Each service has a set of API calls and will typically have Describe* calls that can list resources. However, these commands would need to be issued to each service individually and they typically have different syntax.

There are third-party services (eg Kumolus) that offer functionality to list and visualize services but they are typically focussed on Amazon EC2 and Amazon VPC-based services. They definitely would not go 'into' a database to list DB users, but they would show Amazon RDS instances.

Upvotes: 4

Related Questions