We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a36a8 commit 233b26fCopy full SHA for 233b26f
terraform/redis_sync_lambda.tf
@@ -20,7 +20,7 @@ resource "aws_ecr_repository" "redis_sync_lambda_repository" {
20
module "redis_sync_docker_image" {
21
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
22
version = "8.0.1"
23
-
+ docker_file_path = "./redis_sync/Dockerfile"
24
create_ecr_repo = false
25
ecr_repo = aws_ecr_repository.redis_sync_lambda_repository.name
26
ecr_repo_lifecycle_policy = jsonencode({
@@ -42,7 +42,7 @@ module "redis_sync_docker_image" {
42
43
platform = "linux/amd64"
44
use_image_tag = false
45
- source_path = local.redis_sync_lambda_dir
+ source_path = abspath("${path.root}/..")
46
triggers = {
47
dir_sha = local.redis_sync_lambda_dir_sha
48
}
0 commit comments