From e9f821c06fffe6e4966ef54115fa81406a1f6965 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 31 Aug 2023 14:00:20 +0100 Subject: [PATCH] fixed multi labels --- 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 dbfa2491..957ca122 100644 --- a/infrastructure/terraform/main.tf +++ b/infrastructure/terraform/main.tf @@ -90,13 +90,13 @@ module "s3_presignable_bucket" { allowed_origins = var.allowed_origins } -module "s3" "datalake" { +module "datalake" { source = "./modules/s3" bucketname = "retrofit-datalake-${var.stage}" allowed_origins = var.allowed_origins } -module "s3" "model_directory" { +module "model_directory" { source = "./modules/s3" bucketname = "retrofit-model-directory-${var.stage}" allowed_origins = var.allowed_origins @@ -114,12 +114,12 @@ module "route53" { } # Create an ECR repository for storage of the lambda's docker images -module "ecr" "fastapi_backend_ecr" { +module "fastapi_backend_ecr" { name = "fastapi-repository-${var.environment}" source = "./modules/ecr" } -module "ecr" "lambda_sap_prediction_ecr" { +module "lambda_sap_prediction_ecr" { name = "lambda-sap-prediction-${var.environment}" source = "./modules/ecr" }