From f44d58c08ee6015b280470ea5663806b7004a3bc Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Mon, 12 Jan 2026 14:10:28 +0000 Subject: [PATCH] added new ecr and predictions bucket --- infrastructure/terraform/main.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/infrastructure/terraform/main.tf b/infrastructure/terraform/main.tf index c3a585f7..5a67b793 100644 --- a/infrastructure/terraform/main.tf +++ b/infrastructure/terraform/main.tf @@ -177,6 +177,12 @@ module "retrofit_hotwater_kwh_predictions" { allowed_origins = var.allowed_origins } +module "retrofit_sap_baseline_predictions" { + source = "./modules/s3" + bucketname = "retrofit-sap-baseline-predictions-${var.stage}" + allowed_origins = var.allowed_origins +} + // We make this bucket presignable, because we want to generate download links for the frontend module "retrofit_energy_assessments" { source = "./modules/s3_presignable_bucket" @@ -253,6 +259,12 @@ module "lambda_hotwater_kwh_prediction_ecr" { source = "./modules/ecr" } +# Baselining models +module "sap_baseline_ecr" { + ecr_name = "sap-baseline-prediction-${var.stage}" + source = "./modules/ecr" +} + ############################################## # CDN - Cloudfront ##############################################