From 881f4ea75583ac1c3bec399a497fd06258c70987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Liberoff=20V=C3=A1zquez?= Date: Fri, 31 May 2024 10:18:40 +0000 Subject: [PATCH] Removed `form_recognizer` module. It is not created in the `cog` module. --- infra/main.tf | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/infra/main.tf b/infra/main.tf index 21845aa..15edbef 100644 --- a/infra/main.tf +++ b/infra/main.tf @@ -102,17 +102,6 @@ module "search" { use_private_endpoints = var.use_private_endpoints } -module "form_recognizer" { - source = "./modules/form" - location = azurerm_resource_group.rg.location - resource_group_name = azurerm_resource_group.rg.name - form_recognizer_name = local.form_recognizer_name - vnet_id = module.vnet.virtual_network_id - private_endpoints_subnet_id = module.vnet.pe_subnet_id - use_private_endpoints = var.use_private_endpoints - allowed_ips = local.allowed_ips -} - module "log" { source = "./modules/log" location = azurerm_resource_group.rg.location @@ -161,6 +150,7 @@ module "cog" { bing_name = local.bing_name cognitive_services_name = local.cognitive_services_name content_safety_name = local.content_safety_name + form_recognizer_name = local.form_recognizer_name speech_name = local.speech_name vision_name = local.vision_name vision_location = var.location_azopenai