From 308a8eb41da6c9cd7df5be75238d8658923bf4c6 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Mon, 22 Jul 2024 14:58:57 +0100 Subject: [PATCH] added heating and hotwater kwh buckets --- infrastructure/terraform/main.tf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/infrastructure/terraform/main.tf b/infrastructure/terraform/main.tf index 51b4d87d..9aa734bb 100644 --- a/infrastructure/terraform/main.tf +++ b/infrastructure/terraform/main.tf @@ -163,6 +163,18 @@ module "retrofit_hot_water_cost_predictions" { allowed_origins = var.allowed_origins } +module "retrofit_heating_kwh_predictions" { + source = "./modules/s3" + bucketname = "retrofit-heating-kwh-predictions-${var.stage}" + allowed_origins = var.allowed_origins +} + +module "retrofit_hotwater_kwh_predictions" { + source = "./modules/s3" + bucketname = "retrofit-hotwater-kwh-predictions-${var.stage}" + allowed_origins = var.allowed_origins +} + # Set up the route53 record for the API module "route53" { source = "./modules/route53"