How to list services by resource creation date?
0
Is there a way to create a list of resources based on the date of creation? This is for understanding what resources were created after a MAP Agreement signed . And collect them in one place.
asked 2 months ago6 views
1 Answers
0
Hello
You can use AWS config Advanced query to get the information of all resources single account and multiple accounts in a single place using Config aggregator
- Go to Advanced Query config console in AWS link here
- Copy the Query into the Console and run the Query
Please find the below query to get the information of resources by the date > 2021-07-26, You can change this date by your MAP date and you will get results , You can also export in CSV
SELECT
resourceId,
resourceName,
resourceType,
configuration.instanceType,
tags,
configuration.creationDate
WHERE
configuration.creationDate > '2021-07-26'
ORDER BY
configuration.creationDate
If you want to filter you can change by the data types here
Thank You GK
answered 2 months ago
Relevant questions
List of Custom Tags under Account
asked 2 years agoAWS Api Gateway: how to expose new services automatically?
asked 3 months agoError when deploying an AWS example stack
asked 3 years agoCloud9 environment creation failed
asked a month agoList of resources inside VPC
Accepted Answerasked 2 years ago[Amplify CLi ^7.0.0] How to access custom resources inside of amplify generated resources?
asked 5 months agoStructure of Repositories for Resource creation and lambdas
asked 23 days agoConfig Advanved Query Editor - Return ConfigRuleName
asked 5 days agoHow to list services by resource creation date?
asked 2 months agoRacing condition of IAM role creation and AWS resources
Accepted Answerasked 3 years ago