From 7c556ec6a9f850a6dd6e99789696d1e7e952aea9 Mon Sep 17 00:00:00 2001 From: Sylvia McLaughlin <85905333+sylviamclaughlin@users.noreply.github.com> Date: Wed, 26 Feb 2025 21:09:57 +0000 Subject: [PATCH] Adding openai key for AI answers --- terragrunt/openai_api_keys.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/terragrunt/openai_api_keys.tf b/terragrunt/openai_api_keys.tf index 2a8c62d..6c5e157 100644 --- a/terragrunt/openai_api_keys.tf +++ b/terragrunt/openai_api_keys.tf @@ -5,3 +5,11 @@ module "valentine_api_key" { custom_subdomain_name = "valentine" resource_group_name_prefix = "valentine" } + +module "ai_answers_api_key" { + source = "./modules/openai_api_key" + subscription_id = "5617b0eb-50cc-4fe6-b57e-021e6ec245f0" # DTO subscription + name = "ai-answers" + custom_subdomain_name = "ai-answers" + resource_group_name_prefix = "ai-answers" +}