correct use of terraform state and fix typo

This commit is contained in:
Daniel Roth 2026-04-10 10:23:38 +00:00
parent 9852aa2809
commit 06503cd989
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"
}