added files

This commit is contained in:
github-actions[bot]
2024-05-15 20:45:38 +00:00
committed by lonegunmanb
parent 7ce10b04ff
commit 097321f7d5
9 changed files with 282 additions and 0 deletions

View File

@ -0,0 +1,26 @@
//Create an AI Services connection.
resource "azapi_resource" "AIServicesConnection" {
type = "Microsoft.MachineLearningServices/workspaces/connections@2024-04-01-preview"
name = "Default_AIServices"
parent_id = azapi_resource.hub.id
body = jsonencode({
properties = {
category = "AIServices",
target = jsondecode(azapi_resource.AIServicesResource.output).properties.endpoint,
authType = "AAD", // or "APIKey"
isSharedToAll = true,
metadata = {
ApiType = "Azure",
ResourceId = azapi_resource.AIServicesResource.id
}
credentials = {
Key = "" // <- must input APIKey here
}
}
})
schema_validation_enabled = false
response_export_values = ["*"]
}