Azure / ai-hub

Enterprise Azure OpenAI Hub provides prescriptive architecture and guidance to accelerate Generative AI on Azure for all organisations, in a secure, compliant, scalable, and resillient way, and to democratize proven use-cases to quickly realise business value
MIT License
67 stars 17 forks source link

Error deploying Enterprise Azure OpenAI Hub, Proof of Content intent, Image & Video recognition use-case #263

Closed krisbock closed 3 weeks ago

krisbock commented 4 weeks ago

Deployment error in azureComputerVision step:

Could not find member 'customNetworkInterfaceName' on object of type 'PrivateLinkServiceConnection'. Path 'properties.privateLinkServiceConnections[0].customNetworkInterfaceName', line 1, position 105. (Code: InvalidJson)

error is because customNetworkInterfaceName member is in the wrong place in azureComputerVision.json.

                                "privateLinkServiceConnections": [
                                    {
                                        "customNetworkInterfaceName": "[variables('name-compliant-azureComputerVision-nic')]",
                                        "name": "[variables('name-compliant-azureComputerVision')]",

should be

                                "customNetworkInterfaceName": "[variables('name-compliant-azureComputerVision-nic')]",
                                "privateLinkServiceConnections": [
                                    {

                                        "name": "[variables('name-compliant-azureComputerVision')]",