Skip to content

Commit a64fddc

Browse files
committed
Mesh code refactoring
1 parent 00675f6 commit a64fddc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

terraform/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tf_cmd = AWS_PROFILE=$(aws_profile) terraform
77

88
project_name = immunisation
99
project_short_name = imms
10-
state_bucket = $(project_name)-internal-dev-terraform-state-files
10+
state_bucket = $(project_name)-$(APIGEE_ENVIRONMENT)-terraform-state-files
1111
tf_state= -backend-config="bucket=$(state_bucket)"
1212

1313
tf_vars= -var="project_name=$(project_name)" -var="project_short_name=$(project_short_name)"

terraform/mesh_processor.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Define the directory containing the Docker image and calculate its SHA-256 hash for triggering redeployments
22
locals {
3-
mesh_processor_lambda_dir = abspath("${path.root}/../delta_backend")
3+
mesh_processor_lambda_dir = abspath("${path.root}/../mesh_processor")
44
mesh_processor_lambda_files = fileset(local.mesh_processor_lambda_dir, "**")
55
mesh_processor_lambda_dir_sha = sha1(join("", [for f in local.mesh_processor_lambda_files : filesha1("${local.mesh_processor_lambda_dir}/${f}")]))
66
}

0 commit comments

Comments
 (0)