-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from cdunda/add-acm-handler
Add ACM Cert Handler
- Loading branch information
Showing
2 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import json | ||
import logging | ||
from concurrent.futures import ThreadPoolExecutor, as_completed | ||
|
||
import boto3 | ||
import consts | ||
from aws.resources.base_handler import BaseHandler | ||
from port.entities import create_entities_json, handle_entities | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
class ACMHandler(BaseHandler): | ||
def handle(self): | ||
for region in list(self.regions): | ||
aws_acm_client = boto3.client("acm", region_name=region) | ||
logger.info(f"List ACM Certificates, region: {region}") | ||
self.next_token = "" if self.next_token is None else self.next_token | ||
while self.next_token is not None: | ||
list_certificates_params = self.selector_aws.get("list_parameters", {}) | ||
if self.next_token: | ||
list_certificates_params["NextToken"] = self.next_token | ||
try: | ||
response = aws_acm_client.list_certificates(**list_certificates_params) | ||
except Exception as e: | ||
logger.error( | ||
f"Failed to list ACM Certificates, region: {region}," | ||
f" Parameters: {list_certificates_params}; {e}") | ||
self.skip_delete = True | ||
self.next_token = None | ||
break | ||
|
||
self._handle_list_response(response, region) | ||
|
||
self.next_token = response.get("NextToken") | ||
if self.lambda_context.get_remaining_time_in_millis() < consts.REMAINING_TIME_TO_REINVOKE_THRESHOLD: | ||
# Lambda timeout is too close, should return checkpoint for next run | ||
return self._handle_close_to_timeout(region) | ||
|
||
self._cleanup_regions(region) | ||
|
||
return {"aws_entities": self.aws_entities, "next_resource_config": None, "skip_delete": self.skip_delete} | ||
|
||
def _handle_list_response(self, list_response, region): | ||
certificates = list_response.get("CertificateSummaryList", []) | ||
with ThreadPoolExecutor(max_workers=consts.MAX_DEFAULT_AWS_WORKERS) as executor: | ||
futures = [executor.submit(self.handle_single_resource_item, region, cert.get("CertificateArn")) for cert in certificates] | ||
for completed_future in as_completed(futures): | ||
result = completed_future.result() | ||
self.aws_entities.update(result.get("aws_entities", set())) | ||
self.skip_delete = result.get("skip_delete", False) if not self.skip_delete else self.skip_delete | ||
|
||
def handle_single_resource_item(self, region, certificate_arn, action_type="upsert"): | ||
entities = [] | ||
skip_delete = False | ||
try: | ||
resource_obj = {} | ||
if action_type == "upsert": | ||
logger.info(f"Get ACM certificate details for ARN: {certificate_arn}") | ||
aws_acm_client = boto3.client("acm", region_name=region) | ||
response = aws_acm_client.describe_certificate(CertificateArn=certificate_arn) | ||
resource_obj = response.get("Certificate", {}) | ||
|
||
# Handles unserializable date properties in the JSON by turning them into a string | ||
resource_obj = json.loads(json.dumps(resource_obj, default=str)) | ||
elif action_type == "delete": | ||
resource_obj = {"identifier": certificate_arn} # Entity identifier to delete | ||
entities = create_entities_json(resource_obj, self.selector_query, self.mappings, action_type) | ||
except Exception as e: | ||
logger.error(f"Failed to extract or transform certificate ARN: {certificate_arn}, error: {e}") | ||
skip_delete = True | ||
|
||
aws_entities = handle_entities(entities, self.port_client, action_type) | ||
|
||
return {"aws_entities": aws_entities, "skip_delete": skip_delete} | ||
|
||
def _handle_close_to_timeout(self, region): | ||
if self.next_token: | ||
self.selector_aws["next_token"] = self.next_token | ||
else: | ||
self.selector_aws.pop("next_token", None) | ||
self._cleanup_regions(region) | ||
if not self.regions: # Nothing left to sync | ||
return {"aws_entities": self.aws_entities, "next_resource_config": None, "skip_delete": self.skip_delete} | ||
|
||
if "selector" not in self.resource_config: | ||
self.resource_config["selector"] = {} | ||
self.resource_config["selector"]["aws"] = self.selector_aws | ||
|
||
return {"aws_entities": self.aws_entities, "next_resource_config": self.resource_config, "skip_delete": self.skip_delete} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters