Created
March 25, 2025 22:37
-
-
Save nivleshc/b0e470dddf56663dddfb5354803e71c0 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_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 | |
} | |
resource "aws_cloudwatch_log_group" "regenerate_map_lambda_loggroup" { | |
name = "/aws/lambda/${local.lambda_function_name_prefix}-regenerate-map-lambda" | |
retention_in_days = local.lambda_cloudwatch_log_group_retention | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment