Merge pull request #971 from Hestia-Homes/feature/hubspot-trigger-orchestrator

Hubspot trigger orchestrator: Fix terraform issue
This commit is contained in:
Daniel Roth 2026-04-10 11:28:08 +01:00 committed by GitHub
commit 36f8a50e7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ module "hubspot_deal_etl" {
DB_PORT = var.db_port
HUBSPOT_API_KEY = var.hubspot_api_key
PASHUB_TO_ARA_SQS_URL = data.terraform_remote_state.pashub_to_ara.pashhub_to_ara_queue_url
PASHUB_TO_ARA_SQS_URL = data.terraform_remote_state.pashub_to_ara.outputs.pashub_to_ara_queue_url
}
}

View file

@ -1,4 +1,4 @@
output "pashhub_to_ara_queue_url" {
output "pashub_to_ara_queue_url" {
value = module.lambda.queue_url
description = "URL of the PasHub to Ara SQS queue"
}