DBhaskar

DBhaskar

PowerShell commands for Beginners

PowerShell for Beginners

PowerShell is the de-facto tool to automate the day to day task in windows environment and however, Microsoft is now providing the PowerShell for all the operating systems. To help to start with, this blog post will give you a…

AWS CodeCommit and JIRA integration

CodeCommit-JIRA

AWS CodeCommit service is the SCM tool, fully managed by AWS. You can make use of your existing git commands to work with repositories hosted on CodeCommit. AWS does not have any out-of-box integration for AWS CodeCommit and JIRA integrations…

For and For_Each loop in Terraform

In this article, we are going to discuss on For and For_Each loop in terraform. The count meta-argument at the terraform helps us to create multiple resources of the same type. It is the simplest construct to have the functionality…

Import a resource into terraform state file

Terraform is great tool to deal with the infrastructure deployments. Though, it helps you to completely automate the infra deployments, the resources that are deployed by terraform can only be managed by terraform. Terraform stores the state information in the…

Interpolation in PowerShell

Interpolation is PowerShell is a way to connect the strings with variables without concatenation. Interpolation allows you to expand the variables within the string type declarations and outputs during runtime. For example: Look at the code below for a number…