Salta al contenuto

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 Risposta
0
Risposta accettata

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

con risposta 3 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.