Skip to content

Commit

Permalink
Merge pull request #56 from bhayden53/CALCLOUD-216
Browse files Browse the repository at this point in the history
added 30 day log retention policy to all lambda functions
  • Loading branch information
bhayden53 authored Mar 4, 2021
2 parents ff2749c + d458ccd commit 80ae73d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions terraform/lambda_batch_events.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_batchEvents" {
runtime = "python3.6"
publish = false
timeout = 900
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_blackboard.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_blackboard" {
runtime = "python3.6"
publish = false
timeout = 300
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_broadcast.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_broadcast" {
runtime = "python3.6"
publish = false
timeout = 300
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_job_delete.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_deleteJob" {
runtime = "python3.6"
publish = false
timeout = 900
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_job_rescue.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_rescueJob" {
runtime = "python3.6"
publish = false
timeout = 300
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_job_submit.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_submit" {
runtime = "python3.6"
publish = false
timeout = 30
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down
1 change: 1 addition & 0 deletions terraform/lambda_refresh_cache_logging.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module "calcloud_lambda_refreshCache" {
runtime = "python3.6"
publish = false
timeout = 900
cloudwatch_logs_retention_in_days = 30

source_path = [
{
Expand Down

0 comments on commit 80ae73d

Please sign in to comment.