Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,16 @@ check-deploy: ## check the deploy environment is setup correctly
check-deploy-warn:
@SHOULD_WARN_ONLY=true ./scripts/check-deploy-environment.sh

build: check-warn build-api-packages build-layers build-dependency-layer build-seed-sandbox-lambda ## Build the project
build: check-warn build-api-packages build-layers build-dependency-layer build-seed-sandbox-lambda build-dynamo-export-lambdas ## Build the project

build-seed-sandbox-lambda:
@echo "Building seed_sandbox Lambda"
@cd lambdas/seed_sandbox && make build

build-dynamo-export-lambdas:
@echo "Building dynamo_export Lambdas"
@cd lambdas/dynamo_export && make build

build-dependency-layer:
@echo "Building Lambda dependency layer"
@mkdir -p $(DIST_PATH)
Expand Down
33 changes: 33 additions & 0 deletions lambdas/dynamo_export/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.PHONY: *

FILE_TO_PACKAGE?=

clean:
@echo "Cleaning build artifacts..."
rm -rf build
@echo "✓ Clean complete"

build-lambda: clean
$(eval LAMBDA_NAME := $(basename ${FILE_TO_PACKAGE}))
@echo "Building $(LAMBDA_NAME) Lambda deployment package..."
mkdir -p build

# Copy the handler
cp $(FILE_TO_PACKAGE) build/

# Create the zip file in root dist
mkdir -p ../../dist
cd build && zip -r "../../../dist/${LAMBDA_NAME}.zip" . -x "*.pyc" -x "__pycache__/*" -x ".DS_Store"

@echo "✓ Lambda package created: ../../dist/${LAMBDA_NAME}.zip"

build-dynamo-export-trigger:
FILE_TO_PACKAGE=dynamo_export_trigger.py make build-lambda

build-dynamo-export-poll:
FILE_TO_PACKAGE=dynamo_export_poll.py make build-lambda

build-ssm-put-param:
FILE_TO_PACKAGE=ssm_put_param.py make build-lambda

build: build-dynamo-export-trigger build-dynamo-export-poll build-ssm-put-param
31 changes: 31 additions & 0 deletions lambdas/dynamo_export/dynamo_export_poll.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import boto3
from botocore.config import Config

ddb = boto3.client(
"dynamodb",
config=Config(connect_timeout=5, read_timeout=5),
)


def lambda_handler(event, _context):
completed = []
for arn in event["export_arns"]:
response = ddb.describe_export(ExportArn=arn)
if response["ExportDescription"]["ExportStatus"] == "FAILED":
return {
"status": "FAILED",
"export_to_time": event["export_to_time"],
"export_arns": event["export_arns"],
"export_type": event["export_type"],
}

completed.append(response["ExportDescription"]["ExportStatus"])

status = "COMPLETED" if all(s == "COMPLETED" for s in completed) else "IN_PROGRESS"

return {
"status": status,
"export_to_time": event["export_to_time"],
"export_arns": event["export_arns"],
"export_type": event["export_type"],
}
83 changes: 83 additions & 0 deletions lambdas/dynamo_export/dynamo_export_trigger.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import os
from datetime import datetime, timedelta, timezone

import boto3
from botocore.config import Config
from botocore.exceptions import ClientError

bucket = os.environ["BUCKET"]
ddb_table_arn = os.environ["DDB_TABLE_ARN"]
kms_key = os.environ["KMS_KEY"]
env = os.environ["ENVIRONMENT"]
ddb_table_name = os.environ["DDB_TABLE_NAME"]

SSM_PARAM = "/exports/DynamoExportRuntime"

ddb_client = boto3.client(
"dynamodb",
config=Config(connect_timeout=5, read_timeout=5),
)
ssm = boto3.client(
"ssm",
config=Config(connect_timeout=5, read_timeout=5),
)


def lambda_handler(_event, _context):
to_time = datetime.now(timezone.utc).replace(microsecond=0, second=0, minute=0)
export_arns = []

try:
from_time = ssm.get_parameter(Name=SSM_PARAM)["Parameter"]["Value"]
from_time = datetime.fromisoformat(from_time).replace(
microsecond=0, second=0, minute=0
)

# Handle exports longer than 24 hours by splitting into multiple exports
earliest_pitr = ddb_client.describe_continuous_backups(
TableName=ddb_table_name
)["ContinuousBackupsDescription"]["PointInTimeRecoveryDescription"][
"EarliestRestorableDateTime"
]
from_time = max(from_time, earliest_pitr)
days_difference = (to_time - from_time).days + 1
from_times = [from_time + timedelta(days=i) for i in range(days_difference)]

for base_time in from_times:
end_time = min(base_time + timedelta(days=1), to_time)
if end_time == base_time:
continue
response = ddb_client.export_table_to_point_in_time(
TableArn=ddb_table_arn,
S3Bucket=bucket,
S3SseAlgorithm="KMS",
S3SseKmsKeyId=kms_key,
ExportFormat="DYNAMODB_JSON",
ExportType="INCREMENTAL_EXPORT",
IncrementalExportSpecification={
"ExportFromTime": base_time,
"ExportToTime": end_time,
"ExportViewType": "NEW_AND_OLD_IMAGES",
},
)
export_arns.append(response["ExportDescription"]["ExportArn"])
export_type = response["ExportDescription"]["ExportType"]
except ClientError as e:
if e.response["Error"]["Code"] != "ParameterNotFound":
raise
response = ddb_client.export_table_to_point_in_time(
TableArn=ddb_table_arn,
S3Bucket=bucket,
S3SseAlgorithm="KMS",
S3SseKmsKeyId=kms_key,
ExportFormat="DYNAMODB_JSON",
ExportType="FULL_EXPORT",
)
export_arns.append(response["ExportDescription"]["ExportArn"])
export_type = response["ExportDescription"]["ExportType"]

return {
"export_to_time": to_time.isoformat(),
"export_arns": export_arns,
"export_type": export_type,
}
18 changes: 18 additions & 0 deletions lambdas/dynamo_export/ssm_put_param.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import boto3
from botocore.config import Config

ssm = boto3.client(
"ssm",
config=Config(connect_timeout=5, read_timeout=5),
)


def lambda_handler(event, _context):
param_name = "/exports/DynamoExportRuntime"
param_value = event["export_to_time"]
ssm.put_parameter(Name=param_name, Value=param_value, Type="String", Overwrite=True)
return {
"to_time": param_value,
"export_arns": event["export_arns"],
"export_type": event["export_type"],
}
6 changes: 6 additions & 0 deletions terraform/account-wide-infrastructure/dev/dynamo_export.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module "dynamo_export" {
source = "../modules/dynamo_export"
name_prefix = "nhsd-nrlf--dev"
environment = "dev"
pointer_table_name = module.dev-pointers-table.table_name
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"Comment": "execute lambdas",
"StartAt": "DynamoExport",
"States": {
"DynamoExport": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"OutputPath": "$.Payload",
"Parameters": {
"FunctionName": "${lambda_export_trigger_function_name}",
"Payload.$": "$"
},
"Next": "DynamoExportStatusCheck"
},
"DynamoExportStatusCheck": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"OutputPath": "$.Payload",
"Parameters": {
"FunctionName": "${lambda_export_poll_function_name}",
"Payload.$": "$"
},
"Next": "Choice"
},
"Choice": {
"Type": "Choice",
"Choices": [
{
"Variable": "$.status",
"StringEquals": "COMPLETED",
"Next": "SSMPut"
},
{
"Variable": "$.status",
"StringEquals": "IN_PROGRESS",
"Next": "WaitState"
},
{
"Variable": "$.status",
"StringEquals": "FAILED",
"Next": "ExportFailure"
}
],
"Default": "FailState"
},
"FailState": {
"Type": "Fail",
"Error": "UnhandledStatus",
"Cause": "Status not recognised"
},
"ExportFailure": {
"Type": "Fail",
"Error": "DynamoExportFailed",
"Cause": "DynamoDB Export Failed"
},
"WaitState": {
"Type": "Wait",
"Seconds": 120,
"Next": "DynamoExportStatusCheck"
},
"SSMPut": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"OutputPath": "$.Payload",
"Parameters": {
"FunctionName": "${lambda_ssm_put_param_function_name}",
"Payload.$": "$"
},
"Next": "GlueJobTrigger"
},
"GlueJobTrigger": {
"Type": "Task",
"Resource": "arn:aws:states:::glue:startJobRun.sync",
"Parameters": {
"JobName": "${glue_job_name}",
"Arguments": {
"--SOURCE_BUCKET": "${dynamo_export_s3_bucket_name}",
"--TARGET_BUCKET": "${dynamo_export_processed_s3_bucket_name}",
"--DDB_TABLE_ARN": "${ddb_table_arn}",
"--GLUE_CRAWLER_NAME": "${glue_crawler_name}",
"--EXPORT_TYPE.$": "$.export_type"
}
},
"End": true
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
resource "aws_s3_bucket" "dynamodb_output" {
bucket = "${var.name_prefix}-${var.environment}-dynamo-output-bucket"
}

# May need to restrict access to specific IAM roles/principals in future, but helps with testing for now.
data "aws_iam_policy_document" "dynamodb_output" {
statement {
sid = "HTTPSOnly"
effect = "Deny"
actions = ["s3:*"]

principals {
type = "AWS"
identifiers = ["*"]
}

resources = [
aws_s3_bucket.dynamodb_output.arn,
"${aws_s3_bucket.dynamodb_output.arn}/*"
]

condition {
test = "Bool"
variable = "aws:SecureTransport"
values = ["false"]
}
}
}

resource "aws_s3_bucket_policy" "dynamodb_output" {
bucket = aws_s3_bucket.dynamodb_output.id
policy = data.aws_iam_policy_document.dynamodb_output.json
}


resource "aws_s3_bucket_server_side_encryption_configuration" "dynamodb_output" {
bucket = aws_s3_bucket.dynamodb_output.bucket

rule {
apply_server_side_encryption_by_default {
kms_master_key_id = aws_kms_key.dynamo.arn
sse_algorithm = "aws:kms"
}
}
}


resource "aws_s3_bucket_public_access_block" "dynamodb_output_public_access_block" {
bucket = aws_s3_bucket.dynamodb_output.id

block_public_acls = true
block_public_policy = true
ignore_public_acls = true
restrict_public_buckets = true
}

resource "aws_s3_bucket_lifecycle_configuration" "dynamodb_output_lifecycle" {
bucket = aws_s3_bucket.dynamodb_output.id


rule {
id = "object-auto-delete-rule"
status = "Enabled"
filter {}

expiration {
days = 2
}
}
}

resource "aws_s3_bucket_versioning" "dynamodb_output_versioning" {
bucket = aws_s3_bucket.dynamodb_output.id
versioning_configuration {
status = "Enabled"
}
}
Loading
Loading