How to Rename a Git Branch When working with git it is sometimes necessary to rename a git branch. There could be any number of reasons why the branch name…
The Terraform count meta argument allows you to deploy multiple resources using the same Terraform configuration block. This is useful when you need to deploy things like virtual machines (perhaps…
The Terraform for each meta argument allows you to use a map or a set of strings to deploy multiple similar objects (such as virtual machines) without having to define…
For Terraform 0.12 and later, you can use the join() function, to allow you to join or concatenate strings in your Terraform plans. The terraform join function has two inputs, the separator…
When working with Docker, and for the docker dca exam, it is important to understand the types of docker storage driver available and how they are used. What are Docker…
You can import Azure Automation runbooks using PowerShell very easily. This saves some effort in the Azure Portal if you have a lot of runbooks you wish to import. I’ve…
Scheduling Azure Automation runbooks using the Azure Portal can be time consuming, and more than a little tedious! In this article I will show you how you can create your…
This is a short article on how to use parameters in Azure Automation PowerShell runbooks. I recently wrote about how to create a simple PowerShell Azure Automation runbook. This article…
This article will take a look at how to create an Azure Automation runbook. I’ve recently written about how to create an Azure Automation Account using PowerShell, and how to…