Posts

Showing posts with the label Azure resources

Use Azure AI translater to translate documents between languages, effortlessly, using Logic Apps

Image
  Hey guys, here comes another amazing feature of Azure AI serfvices. If you are worried about sending your invoice to your finance team, who understands only Spanish (or  don't understand English much), here comes a cool solution for the same. The Azure Microsoft Translator API is an awesome service that can interpret any document to any desired language and you know what? You don't need to recreate the document again -- the translator can go and dump the translated document to any desired destination as well. This document can give you an insight of doing the same. Step 1: Create the translator service  Crawl upto https://portal.azure.com >> new service >> search for AI services >> Translator: Fill out the form as shown -- Select Pricing tier as Free, however it all depends on the Region you have selected, and obviously on your subscription. Click Review + Create >> Create. It will take few moments to create the service for you. The resultant tra...

Manage your Azure resource deployments smartly using Biceps: step by step

Image
  In a world where we live by action, automation and speed, Azure Biceps are an awesome way to expeidate your deployments. Biceps are new normal and monograms of infrastructure-As-Code, where you can manipulate your resource creation by feeding in parameters, inputs and varying conditions through Azure CLIs. Confused? Let me bring up the definition of Azure Biceps, from Microsoft's definition:  Bicep is a domain-specific language (DSL) that uses declarative syntax to deploy Azure resources. In a Bicep file, you define the infrastructure you want to deploy to Azure, and then use that file throughout the development lifecycle to repeatedly deploy your infrastructure. Your resources are deployed in a consistent manner .  You cane create any resource, resources -- any number of them, simply mainitaining their defintions on simple module based files and invoking their deployments through Azure CLI based commmands. As compared ARM templates: Bicep syntax reduces that complexity...