Fix references to the functions code

This commit is contained in:
averbukh 2022-03-16 00:52:52 +01:00
parent f65c64e7f7
commit 9bf9b165db
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ module "cf-restarter" {
lifecycle_delete_age = null
}
bundle_config = {
source_dir = "function/restarter"
source_dir = "${path.module}/function/restarter"
output_path = "restarter.zip"
excludes = []
}
@ -150,7 +150,7 @@ module "cf-healthchecker" {
bucket_name = module.cf-restarter.bucket_name
bundle_config = {
source_dir = "function/healthchecker"
source_dir = "${path.module}/function/healthchecker"
output_path = "healthchecker.zip"
excludes = []
}