From 15a181125f3ed50cccc52f8d896cd905af23373a Mon Sep 17 00:00:00 2001 From: wellsiau-aws Date: Sun, 30 Apr 2023 15:46:08 -0700 Subject: [PATCH 1/3] chore: bump ver to publish --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index ae39fab..45c7a58 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.0.0 +v0.0.1 From a6b4dd6a4a6012f3659890900be3a39cce1291d7 Mon Sep 17 00:00:00 2001 From: wellsiau-aws Date: Mon, 1 May 2023 18:47:27 -0700 Subject: [PATCH 2/3] fix: typo --- .project_automation/functional_tests/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.project_automation/functional_tests/entrypoint.sh b/.project_automation/functional_tests/entrypoint.sh index e31bf27..2f819e2 100755 --- a/.project_automation/functional_tests/entrypoint.sh +++ b/.project_automation/functional_tests/entrypoint.sh @@ -5,7 +5,7 @@ PROJECT_PATH=${BASE_PATH}/project PROJECT_TYPE_PATH=${BASE_PATH}/projecttype -echo "Starting Funtional Tests" +echo "Starting Functional Tests" cd ${PROJECT_PATH} From 810d9ba2150150b1778f12195f942ea0aa44637b Mon Sep 17 00:00:00 2001 From: wellsiau-aws Date: Mon, 1 May 2023 18:47:45 -0700 Subject: [PATCH 3/3] fix: bump retention days to match checkov --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index a3de508..ea9cbe5 100644 --- a/variables.tf +++ b/variables.tf @@ -19,7 +19,7 @@ variable "cloudwatch_log_group_name" { variable "cloudwatch_log_group_retention" { description = "Lambda CloudWatch log group retention period" type = string - default = "30" + default = "365" validation { condition = contains(["1", "3", "5", "7", "14", "30", "60", "90", "120", "150", "180", "365", "400", "545", "731", "1827", "3653", "0"], var.cloudwatch_log_group_retention) error_message = "Valid values for var: cloudwatch_log_group_retention are (1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, 3653, and 0)."