From 89b7643ed12846edc9c6e67a263e6ebf9f639174 Mon Sep 17 00:00:00 2001 From: Ransford Okpoti Date: Mon, 1 Dec 2025 12:00:25 +0000 Subject: [PATCH] fix: missing required field text --- terraform/3_ingestion/outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/3_ingestion/outputs.tf b/terraform/3_ingestion/outputs.tf index ba9b74b..03633fb 100644 --- a/terraform/3_ingestion/outputs.tf +++ b/terraform/3_ingestion/outputs.tf @@ -39,6 +39,6 @@ output "setup_instructions" { curl -X POST ${aws_api_gateway_stage.api.invoke_url}/ingest \ -H "x-api-key: " \ -H "Content-Type: application/json" \ - -d '{"content": "Test document", "metadata": {"source": "test"}}' + -d '{"text": "Test document", "metadata": {"source": "test"}}' EOT } \ No newline at end of file