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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ