Skip to content

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 Answer
0
Accepted Answer

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

answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.