mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-30 13:10:47 +00:00
Merge branch 'main' of github.com:Hestia-Homes/Model into etl-michael
This commit is contained in:
commit
cabbc4e493
1 changed files with 22 additions and 0 deletions
|
|
@ -129,6 +129,18 @@ module "retrofit_sap_data" {
|
||||||
allowed_origins = var.allowed_origins
|
allowed_origins = var.allowed_origins
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module "retrofit_carbon_predictions" {
|
||||||
|
source = "./modules/s3"
|
||||||
|
bucketname = "retrofit-carbon-predictions-${var.stage}"
|
||||||
|
allowed_origins = var.allowed_origins
|
||||||
|
}
|
||||||
|
|
||||||
|
module "retrofit_heat_predictions" {
|
||||||
|
source = "./modules/s3"
|
||||||
|
bucketname = "retrofit-heat-predictions-${var.stage}"
|
||||||
|
allowed_origins = var.allowed_origins
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
# Set up the route53 record for the API
|
# Set up the route53 record for the API
|
||||||
module "route53" {
|
module "route53" {
|
||||||
|
|
@ -160,3 +172,13 @@ module "eco_spreadsheet_ecr" {
|
||||||
ecr_name = "eco-spreadsheet-${var.stage}"
|
ecr_name = "eco-spreadsheet-${var.stage}"
|
||||||
source = "./modules/ecr"
|
source = "./modules/ecr"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
module "lambda_carbon_prediction_ecr" {
|
||||||
|
ecr_name = "lambda-carbon-prediction-${var.stage}"
|
||||||
|
source = "./modules/ecr"
|
||||||
|
}
|
||||||
|
|
||||||
|
module "lambda_heat_prediction_ecr" {
|
||||||
|
ecr_name = "lambda-heat-prediction-${var.stage}"
|
||||||
|
source = "./modules/ecr"
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue