From f3507e1a060224ad1dae6e24b745b99adca6be31 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 31 Aug 2023 14:05:11 +0100 Subject: [PATCH] this is the last damn time --- infrastructure/terraform/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/terraform/main.tf b/infrastructure/terraform/main.tf index 18969530..4e513778 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" { - ecr_name = "fastapi-repository-${var.environment}" + ecr_name = "fastapi-repository-${var.stage}" source = "./modules/ecr" } module "lambda_sap_prediction_ecr" { - ecr_name = "lambda-sap-prediction-${var.environment}" + ecr_name = "lambda-sap-prediction-${var.stage}" source = "./modules/ecr" }