スキップしてコンテンツを表示

API for public IP insights and Orga Feature

1

Hi, i just wanted to know if theres any timeline when an API or Organization Feature for the new public IP insights will be launched, especially for big AWS Organizations with hundreds of accounts this feature is a must have.

1回答
0
承認された回答

Workaround - Config Aggretator Query:


Select
  accountId,
  Count(*)
where
  resourceType = 'AWS::EC2::NetworkInterface'
  AND (
    configuration.association.publicIp BETWEEN '0.0.0.0'
    AND '255.255.255.255'
  )
GROUP BY
  accountId

回答済み 3年前

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

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

関連するコンテンツ