Azure container app environment is fully managed environment to run containerized applications. This blog contains terraform script that can be used to deploy Azure Container App Environment with internal only ingress which means accessible only from VNet. You can find the complete code sample in GitHub here.
Tuesday, June 13, 2023
Monday, May 8, 2023
How to Access Cognitive Service Translator API With Virtual Network Endpoint
Microsoft Cognitive Service translator accessible with Web API, Virtual Network and container endpoints. This blog explains how to access cognitive service with virtual network endpoint.
Pre-requisites: cognitive service translator
Go to translator app Networking under Resource Management. Select Firewalls and virtual networks tab.
Tuesday, April 25, 2023
How to Call Cognitive Service Translator API With Postman
This blog explains how to setup postman to test cognitive service translator.
Pre-requisites: Cognitive service translator, access to postman
Open postman, add a new post request and add following configurations.
If the translator access limited to VNet use following URL format.
URL : https://your-translate-service-name.cognitiveservices.azure.com/translator/text/v3.0/translate?to=fr
ex: https://my-demo-translator.cognitiveservices.azure.com/translator/text/v3.0/translate?from=en&to=fr
-
As DevOps engineers, you get requirements to do scripts to perform several actions on application or get status of the application backend ...
-
If you are familiar with Terraform, you might have experience with terraform state import, which allows to import state of the already prov...
-
This post will discuss the issue you might get when trying to push the nuget package to the Azure DevOps Artifact feed using the build pipel...