Devops Tools

CloudFormation- Introduction

Posted on

CLoudFormation is a declarative way of creating your infrastructure on AWS For example — A sample cloudformation template 1. Need EC2 instance 2. Associate security group to these EC2 instance 3. Create ELB (Load Balancer) in front of EC2 Instances So for these above tasks, we can create a template in json/yaml that will automatically create this […]

AWS

Configure AWS CLI

Posted on

Configure AWS CLI You need to provide the AWS access credential  to do any kind of automation You can find the security credentials of any IAM user as shown below You need python-pip on that machine to install awscli yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo yum install python-pip sudo pip install awscli –upgrade pip Run the below […]

Jenkins

CI/CD using Jenkins and Docker

Posted on

This blog will help you to setup a CI/CD pipeline using Jenkins and Docker. It includes automation using Jenkins Pipeline/Groovy scripting language, it uses sonar for code quality and artifactory for artifactory management Tools: Jenkins- CI/CD Git/GitHub — Source Control Management Docker — Container JaCOCO — Code Coverage Tool Gradle — Build tool Ansible — Configuration Management Ansible/Github/Docker/Cucumber/ Continuous Integration Pipeline Configuration Management with Ansible […]

Ansible

Terraform Examples and Commands

Posted on

This blog will help you with the basic terraform commands and will give you an idea of how to user variables,map, attributes. Some useful terraform commands Terraform plan — this command shows you what applying do by checking the template, state file, and actual state of the resource. It is recommended to use this before running apply […]

Devops Tools

Analyze VPC Flow log using EK

Posted on

This blog will help you to Analyze VPC Flow logusing Elastic Search Tools/Task: Create Flow Log in VPC IAM Role for VPC Flow Log Cloudwatch Log Group ElasticSearch IAM Lambda role Create Flow Log on VPC Open VPC Click on Create Flow Log 3. For Role — Click on Set up Permissions, it will create a role […]