From 757ad9785e34edcaa59c90b41387a08add7b8405 Mon Sep 17 00:00:00 2001 From: Andy Aviles Date: Wed, 19 Jun 2024 11:51:11 -0400 Subject: [PATCH] removed credentials as it was not expected --- quickstart/101-ai-studio/connections.tf | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/quickstart/101-ai-studio/connections.tf b/quickstart/101-ai-studio/connections.tf index 62bb753e..2ab70ee8 100644 --- a/quickstart/101-ai-studio/connections.tf +++ b/quickstart/101-ai-studio/connections.tf @@ -8,17 +8,12 @@ resource "azapi_resource" "AIServicesConnection" { properties = { category = "AIServices", target = jsondecode(azapi_resource.AIServicesResource.output).properties.endpoint, - authType = "AAD", // or "APIKey" + authType = "AAD", isSharedToAll = true, metadata = { ApiType = "Azure", ResourceId = azapi_resource.AIServicesResource.id } - - credentials = { - Key = "" // <- must input APIKey here - } - } }) response_export_values = ["*"]