Terraform Series Part 1: High level Introduction to Terraform
Tag: automation
Azure Series Part 9: Creating your first function app via Azure portal and ARM templates
Functions are hosted in an execution context called a function app. You define function apps to logically group and structure your functions and a compute resource in Azure. Function apps may use one of two types of service plans. The first service plan is the Consumption service plan. The plan that you choose when using the Azure … Continue reading Azure Series Part 9: Creating your first function app via Azure portal and ARM templates
Azure Series Part 5: Using bootstrap script to install packages while provisioning the Linux Virtual Machines
Microsoft Azure provides a Custom Script Extension which is useful for post-deployment configuration, software installation, or any other configuration/management task. Before we get started I shared in this below post how we can provision the Linux Virtual Machines in Azure. Azure Series Part 4: Provisioning and accessing the Linux Virtual Machines We will use the same … Continue reading Azure Series Part 5: Using bootstrap script to install packages while provisioning the Linux Virtual Machines
Azure Series Part 1: Creating resource groups in Microsoft Azure
A resource group is a container that contains different resources in your in your Azure account. You can add any kind of resources you want to manage under one resource group. You can create a resource group based of your orgs preferences. It would be meaningful to create a resource group based on region as … Continue reading Azure Series Part 1: Creating resource groups in Microsoft Azure
Test Automation: Running Cucumber feature files using Node.js
Cucumber.js is a Node.js library used for automation. Cucumber.js helps to test our site's features using pure JavaScript and the Selenium WebDriver. It is powerful library to setup your testing environment compared to java which requires you to install various packages and jars which seems to be hectic and takes time and sometimes prone to … Continue reading Test Automation: Running Cucumber feature files using Node.js