From e0c786822cc8e381b7980b9f6c86e5d1a2d6139a Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 31 Aug 2023 14:02:51 +0100 Subject: [PATCH] this is the last damn time --- infrastructure/terraform/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/terraform/main.tf b/infrastructure/terraform/main.tf index 957ca122..18969530 100644 --- a/infrastructure/terraform/main.tf +++ b/infrastructure/terraform/main.tf @@ -115,11 +115,11 @@ module "route53" { # Create an ECR repository for storage of the lambda's docker images module "fastapi_backend_ecr" { - name = "fastapi-repository-${var.environment}" - source = "./modules/ecr" + ecr_name = "fastapi-repository-${var.environment}" + source = "./modules/ecr" } module "lambda_sap_prediction_ecr" { - name = "lambda-sap-prediction-${var.environment}" - source = "./modules/ecr" + ecr_name = "lambda-sap-prediction-${var.environment}" + source = "./modules/ecr" }