Skip to content

Commit

Permalink
fix: set output_file_mode for zip creation
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfreitag committed Nov 12, 2023
1 parent 39d0d75 commit 3b5a3c2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ data "aws_caller_identity" "current" {}
# AWS region information
data "aws_region" "current" {}


# Creates a zip file for the check-msk-status Lambda function
data "archive_file" "status_checker_code" {
type = "zip"
source_dir = "${path.module}/functions/check-msk-status/"
output_path = "${path.module}/out/check-msk-status.zip"
type = "zip"
source_dir = "${path.module}/functions/check-msk-status/"
output_path = "${path.module}/out/check-msk-status.zip"
exclude_symlink_directories = false
output_file_mode = "0666"
}

0 comments on commit 3b5a3c2

Please sign in to comment.