Skip to content

Instantly share code, notes, and snippets.

@nivleshc
Created March 26, 2025 23:08
Show Gist options
  • Save nivleshc/89725c33bf9dea1286c690ea084d3030 to your computer and use it in GitHub Desktop.
Save nivleshc/89725c33bf9dea1286c690ea084d3030 to your computer and use it in GitHub Desktop.
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")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment