Merge pull request #321 from Hestia-Homes/solar-api

added heating and hotwater kwh buckets
This commit is contained in:
KhalimCK 2024-07-22 14:59:40 +01:00 committed by GitHub
commit 688ff0588c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"