Skip to content

Instantly share code, notes, and snippets.

@nivleshc
nivleshc / blog-photo-location-map-regenerate-map-lambda.py
Created March 27, 2025 00:36
This gist contains code from the file regenerate-map-lambda.py which is part of the blog-photo-location-map repository.
import os
import io
import csv
import boto3
import json
import folium
import jwt
from jwt import PyJWKClient
from PIL import Image, ExifTags
@nivleshc
nivleshc / blog-photo-location-map-upload-photo-lambda.py
Created March 27, 2025 00:26
This gist contains code from the file upload-photo-lambda.py which is part of the blog-photo-location-map repository.
import os
import json
import base64
import boto3
import csv
import io
import jwt
from jwt import PyJWKClient
from PIL import Image, ExifTags
@nivleshc
nivleshc / blog-photo-location-map-fetch-object-lambda.py
Created March 27, 2025 00:14
This gist contains code from the file fetch-object-lambda.py which is part of the blog-photo-location-map repository.
import os
import json
import boto3
import urllib.request
import jwt
from jwt import PyJWKClient
# retrieve environment variables
s3_bucket = os.environ.get('BUCKET_NAME') # S3 bucket that contains all the objects
cognito_pool_id = os.environ.get('COGNITO_POOL_ID') # Cognito User Pool ID used for authentication
@nivleshc
nivleshc / blog-photo-location-map-lambda-10.tf
Created March 27, 2025 00:02
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
resource "aws_lambda_function" "regenerate_map_lambda" {
filename = data.archive_file.regenerate_map_lambda_src.output_path
function_name = "${local.lambda_function_name_prefix}-regenerate-map-lambda"
timeout = local.lambda_function_timeout
role = aws_iam_role.lambda_role.arn
handler = "regenerate-map-lambda.lambda_handler"
source_code_hash = data.archive_file.regenerate_map_lambda_src.output_base64sha256
runtime = local.lambda_runtime
@nivleshc
nivleshc / blog-photo-location-map-lambda-09.tf
Created March 27, 2025 00:00
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
resource "aws_lambda_function" "upload_photo_lambda" {
filename = data.archive_file.upload_photo_lambda_src.output_path
function_name = "${local.lambda_function_name_prefix}-upload-photo-lambda"
timeout = local.lambda_function_timeout
role = aws_iam_role.lambda_role.arn
handler = "upload-photo-lambda.lambda_handler"
source_code_hash = data.archive_file.upload_photo_lambda_src.output_base64sha256
runtime = local.lambda_runtime
@nivleshc
nivleshc / blog-photo-location-map-lambda-08.tf
Created March 26, 2025 23:57
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
resource "aws_lambda_function" "fetch_object_lambda" {
filename = data.archive_file.fetch_object_lambda_src.output_path
function_name = "${local.lambda_function_name_prefix}-fetch-object-lambda"
timeout = local.lambda_function_timeout
role = aws_iam_role.lambda_role.arn
handler = "fetch-object-lambda.lambda_handler"
source_code_hash = data.archive_file.fetch_object_lambda_src.output_base64sha256
runtime = local.lambda_runtime
@nivleshc
nivleshc / blog-photo-location-map-lambda-07.tf
Created March 26, 2025 23:08
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
resource "aws_lambda_layer_version" "photo_location_map_layer" {
filename = "${path.module}/src/layers/layer-photo-location-map.zip"
layer_name = "layer_photo_location_map"
description = "Lambda layer containing cffi cryptography PyJWT pillow folium python packages"
compatible_runtimes = local.lambda_layer_compatibe_runtimes
source_code_hash = filebase64sha256("${path.module}/src/layers/layer-photo-location-map.zip")
}
@nivleshc
nivleshc / blog-photo-location-map-package-python-libraries-01.sh
Created March 25, 2025 22:53
This gist contains code for packaging the python libraries used to create the AWS Lambda layer that will be used by the AWS Lambda functions in the blog-photo-location-map repository.
mkdir lambda_layer/python
cd lambda_layer
pip install cffi cryptography PyJWT pillow folium -t ./python
zip -r layer-photo-location-map.zip python/
@nivleshc
nivleshc / blog-photo-location-map-lambda-06.tf
Created March 25, 2025 22:44
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
data "archive_file" "fetch_object_lambda_src" {
type = "zip"
source_file = "${path.module}/src/function/fetch-object-lambda.py"
output_path = "${path.module}/src/function/fetch-object-lambda.zip"
}
data "archive_file" "upload_photo_lambda_src" {
type = "zip"
source_file = "${path.module}/src/function/upload-photo-lambda.py"
output_path = "${path.module}/src/function/upload-photo-lambda.zip"
@nivleshc
nivleshc / blog-photo-location-map-lambda-05.tf
Created March 25, 2025 22:37
This gist contains code from the file lambda.tf which is part of the blog-photo-location-map repository.
resource "aws_cloudwatch_log_group" "fetch_object_lambda_loggroup" {
name = "/aws/lambda/${local.lambda_function_name_prefix}-fetch-object-lambda"
retention_in_days = local.lambda_cloudwatch_log_group_retention
}
resource "aws_cloudwatch_log_group" "upload_photo_lambda_loggroup" {
name = "/aws/lambda/${local.lambda_function_name_prefix}-upload-photo-lambda"
retention_in_days = local.lambda_cloudwatch_log_group_retention
}