AAAnil Appariinanilappari.hashnode.dev·Oct 2, 2022 · 3 min readCreate Golden Image using PackerWhat's a Golden Image ? A golden image is a base image on top of which developers can build applications, letting them focus on the application itself instead of system dependencies and patches. A typical golden image includes common system, logging,...00
AAAnil Appariinanilappari.hashnode.dev·Oct 1, 2022 · 3 min readConfigure EC2 logs to CloudwatchIn this article, ec2 (Amazon Linux) will be configured with Cloud Watch to send its logs. All the resources will be created with Terraform. Let's start with VPC, subnet, route tables & etc.. VPC.tf resource "aws_vpc" "vpc" { cidr_block = var....00
AAAnil Appariinanilappari.hashnode.dev·Sep 25, 2022 · 3 min readTrivy Security ScannerTrivy is a security scanning tool. It can be used to scan targets such as Docker Image, Filesystem, Git repository, Kubernetes cluster or resource. In what use case Trivy can be used ? I use it within the Jenkins pipeline to scan Docker Images for fi...00
AAAnil Appariinanilappari.hashnode.dev·Sep 24, 2022 · 3 min readUser Assigned Identity & Storage Account in Azure with TerraformI had come across a situation where I got a mysql running in a Azure Vm & I have to upload database backup files to storage. So, for that purpose I have done this. The goal is to create storage account container and access from VM using User Assigned...00
AAAnil Appariinanilappari.hashnode.dev·Sep 23, 2022 · 5 min readCreate Azure VM with TerraformWhy do I use Terraform to create Azure resources? Well, I am not interested in repeating the same manual steps in Azure Portal, every-time for multiple environments which needs same configuration. Terraform gives the flexibility to define a template ...00