Created
March 25, 2025 22:44
-
-
Save nivleshc/32212783031c520c2e037951593bb97d 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
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" | |
} | |
data "archive_file" "regenerate_map_lambda_src" { | |
type = "zip" | |
source_file = "${path.module}/src/function/regenerate-map-lambda.py" | |
output_path = "${path.module}/src/function/regenerate-map-lambda.zip" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment