From 4e6dd546ce8f4aca1c8ad27ce16ecb753fb456a5 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 13 Mar 2026 13:38:11 +0000 Subject: [PATCH] make sure domain_name is exported from lambda_with_api_gateway for use by fast-api --- .../terraform/modules/lambda_with_api_gateway/outputs.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf index c44ddc0d..fad4f66c 100644 --- a/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf +++ b/infrastructure/terraform/modules/lambda_with_api_gateway/outputs.tf @@ -4,4 +4,8 @@ output "role_name" { output "api_endpoint" { value = aws_apigatewayv2_stage.this.invoke_url +} + +output "domain_name" { + value = var.domain_name } \ No newline at end of file