How OpenAI replaces daily works of a Software Engineer

ChatGPT is a cutting-edge language model developed by OpenAI that has been trained on a massive corpus of text data. With its advanced artificial intelligence capabilities, it can generate human-like responses to a wide range…

Create an Azure Kubernetes Service with Powershell

Creating an Azure AKS (Azure Kubernetes Service) cluster in PowerShell can be a daunting task for those unfamiliar with the process. However, by following a few simple steps and utilizing the Azure PowerShell module, you…

Adding a subnet to Azure Virtual Network with Powershell

Adding a subnet to an Azure virtual network using PowerShell can be done through a few simple steps. First, you will need to connect to your Azure subscription using the Connect-AzAccount command. This will prompt…

Terraform not able to create azure role assignment

Where using the above client_id, tenant_id, subscription_id, client_secret (they are obtained from az account show and was able to successfully create other resources like vnet, subnets etc), it gives below error Error: authorization.RoleAssignmentsClient#Create: Failure responding…

Azure Caches for Redis with Node.JS

Azure Caches for Redis provides an in-memory data store based on the Redis software. Azure Cache for Redis is based on the popular open-source Redis cache. It gives you access to a secure, dedicated Redis…

Setup Azure Log Analytics Workspace for App Service

A Log Analytics workspace is a unique centralized spaces for log data from Azure Monitor and other Azure services, such as Azure App services, SQL databases where you can easily store, retain, and query data…

Connect Azure Web App to Azure VNET

In some reason, your Azure Web App need to connect to a private, secured resource on Azure. Then you'll think about VNET which will be created for security purpose. You can deploy VMs, and several…

How to create Azure Virtual Network

Azure Virtual Network (VNet) is the fundamental building block for your private network in Azure. VNet enables many types of Azure resources, such as Azure Virtual Machines (VM), to securely communicate with each other, the…

Deploy Node.JS application to Azure App Service

Azure App Service enables you to build and host web apps, mobile back ends, and RESTful APIs in the programming language of your choice without managing infrastructure. It offers auto-scaling and high availability, supports both…

AKS #5: How to configure AKS ingress and domain

When an Azure kubernetes service up and running, we have to expose its service to the real world if we want to broadcast our public service. All request will be routed from your end-users to…