Created
March 26, 2025 23:08
-
-
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.
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
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