Merge pull request #835 from Hestia-Homes/deploy-fastapi-with-terraform

Deploy fastapi with terraform: correct use of tfstate outputs in fast api terraform
This commit is contained in:
Jun-te Kim 2026-03-11 14:24:19 +00:00 committed by GitHub
commit ac328bd7d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -110,8 +110,8 @@ module "fastapi" {
HOTWATER_KWH_PREDICTIONS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_hotwater_kwh_predictions_bucket_name
ENERGY_ASSESSMENTS_BUCKET = data.terraform_remote_state.shared.outputs.retrofit_energy_assessments_bucket_name
ENGINE_SQS_URL = data.terraform_remote_state.engine.ara_engine_queue_url
CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.categorisation_queue_url
ENGINE_SQS_URL = data.terraform_remote_state.engine.outputs.ara_engine_queue_url
CATEGORISATION_SQS_URL = data.terraform_remote_state.categorisation.outputs.categorisation_queue_url
}
}