Skip to content

Commit

Permalink
fix: S3 export path prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
patheard committed Jan 12, 2025
1 parent 1c68a34 commit 3643b46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module "platform_support_freshdesk_export" {

lambda_name = "platform-support-freshdesk-export"
lambda_schedule_expression = "cron(0 5 * * ? *)" # 5am UTC every day
s3_arn_write_path = "${var.raw_bucket_arn}${local.freshdesk_export_path}"
s3_arn_write_path = "${var.raw_bucket_arn}/${local.freshdesk_export_path}/*"

lambda_policies = [
data.aws_iam_policy_document.platform_support_freshdesk_export.json
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/export/platform/support/freshdesk/locals.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
freshdesk_export_path = "/platform/support/freshdesk/"
freshdesk_export_path = "platform/support/freshdesk"
}

0 comments on commit 3643b46

Please sign in to comment.