Skip to content

Commit ddc4a3e

Browse files
committed
fix: 파일 경로 프로젝트 루트로 수정
1 parent 08e0dca commit ddc4a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terraform-db-migration/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ resource "aws_lambda_function" "migration_task" {
9797
runtime = "python3.12"
9898
timeout = 900
9999

100-
filename = "${path.root}/build/migration_lambda.zip"
101-
source_code_hash = filebase64sha256("${path.root}/build/migration_lambda.zip")
100+
filename = "${path.root}/../build/migration_lambda.zip"
101+
source_code_hash = filebase64sha256("${path.root}/../build/migration_lambda.zip")
102102

103103
role = module.migration_iam_role["db-migration-lambda-role"].role_arn
104104

0 commit comments

Comments
 (0)