To find the tags attached to a given AWS Resource at the OU Level

0

Hi, I am trying to fetch the list of tags attached to an AWS resource when evaluated at the centralized level (OU level). Is there any direct way for implementing this problem set?

If not, can you please help me the potential ways of achieving it. I also want an additional feature where I can download the csv format of the generated data rather than further cleaning and extracting the useful data out of ton of the information collected.

Please help

profile picture
已提問 1 年前檢視次數 188 次
1 個回答
0

You can do this with AWS Config Advanced Query using the Organization Config Aggregator. See: Querying the Current Configuration State of AWS Resources.

Something like this:

SELECT
  resourceId,
  tags
WHERE
  resourceId = 'AROAQCPVTFYGIWRJVM63L'

You can then export the results to JSON or CSV.

profile pictureAWS
專家
kentrad
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南