removed credentials as it was not expected

This commit is contained in:
Andy Aviles 2024-06-19 11:51:11 -04:00 committed by lonegunmanb
parent d5c754a94b
commit de72279095

View File

@ -8,17 +8,12 @@ resource "azapi_resource" "AIServicesConnection" {
properties = { properties = {
category = "AIServices", category = "AIServices",
target = jsondecode(azapi_resource.AIServicesResource.output).properties.endpoint, target = jsondecode(azapi_resource.AIServicesResource.output).properties.endpoint,
authType = "AAD", // or "APIKey" authType = "AAD",
isSharedToAll = true, isSharedToAll = true,
metadata = { metadata = {
ApiType = "Azure", ApiType = "Azure",
ResourceId = azapi_resource.AIServicesResource.id ResourceId = azapi_resource.AIServicesResource.id
} }
credentials = {
Key = "" // <- must input APIKey here
}
} }
}) })
response_export_values = ["*"] response_export_values = ["*"]