Posts Tagged : powershell

Modify YML files with PowerShell

In this short post, I’ll share a simple script to modify the YML files. You can also use the script in the CI/CD pipelines, an example for Azure DevOps is below. To read the YML file we will use powershell-yaml module, which you can install and active like this: Install-Module -Name powershell-yaml Import-Module powershell-yaml 12…

read more
Validate Azure ARM templates with PowerShell

If you are writing and using ARM templates as as a base of your infrastructure as code (IaC) principle, then the next few lines might be interesting to you. If you are new to IaC read this or if you are new to ARM templates read here. We are using ARM templates with Azure DevOps…

read more