forked from p15670423/monkey
Island: Use aws_service.get_account_id() in AWSExporter
This commit is contained in:
parent
56ea170808
commit
ceebdea3a9
|
@ -5,7 +5,6 @@ from datetime import datetime
|
||||||
import boto3
|
import boto3
|
||||||
from botocore.exceptions import UnknownServiceError
|
from botocore.exceptions import UnknownServiceError
|
||||||
|
|
||||||
from common.aws.aws_instance import AwsInstance
|
|
||||||
from monkey_island.cc.services import aws_service
|
from monkey_island.cc.services import aws_service
|
||||||
from monkey_island.cc.services.reporting.exporter import Exporter
|
from monkey_island.cc.services.reporting.exporter import Exporter
|
||||||
|
|
||||||
|
@ -90,7 +89,7 @@ class AWSExporter(Exporter):
|
||||||
)
|
)
|
||||||
instance_arn = "arn:aws:ec2:" + str(region) + ":instance:{instance_id}"
|
instance_arn = "arn:aws:ec2:" + str(region) + ":instance:{instance_id}"
|
||||||
# Not suppressing error here on purpose.
|
# Not suppressing error here on purpose.
|
||||||
account_id = AwsInstance().get_account_id()
|
account_id = aws_service.get_account_id()
|
||||||
logger.debug("aws account id acquired: {}".format(account_id))
|
logger.debug("aws account id acquired: {}".format(account_id))
|
||||||
|
|
||||||
aws_finding = {
|
aws_finding = {
|
||||||
|
|
Loading…
Reference in New Issue