From f3afb749081e80bbf4a0ee7e29e041192f4066fa Mon Sep 17 00:00:00 2001 From: vmlcode <67714035+vmlcode@users.noreply.github.com> Date: Wed, 25 Mar 2026 12:10:50 -0400 Subject: [PATCH] feat: add OPENAI_API_KEY to frontEnd module configuration --- infra/main.bicep | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infra/main.bicep b/infra/main.bicep index 6a76e1f1..599c0b14 100644 --- a/infra/main.bicep +++ b/infra/main.bicep @@ -1607,6 +1607,10 @@ module frontEnd 'core/host/appservice.bicep' = { name: 'ANTHROPIC_API_KEY' value: orchestratorAnthropicApiKeyVar } + { + name: 'OPENAI_API_KEY' + value: mcpOpenAiApiKey + } ] } }