Automating Infrastructure as Code: Planning and Applying Terraform Changes through Jenkins Declarative PipelineSep 21, 2023·5 min read
Leveraging Amazon FSx as Persistent Volume for EKS Windows NodesIntroduction to Amazon FSx In the ever-evolving landscape of cloud computing, managing and scaling storage solutions for containerized applications is a critical aspect of modern infrastructure. One of the challenges, particularly in the context of W...Jan 23, 2024·4 min read
Provisioning Amazon RDS through TerraformThis blog is about terraform AWS RDS provisioning with secret manager integration. Terraform RDS Workflow The following image shows the RDS provisioning workflow using Terraform. Here is the workflow explanation. Terraform code is developed, tested...Jul 27, 2023·2 min read
AWS Lambda function to start and stop EC2 instances with Terraform codeLambda function written in Python which when triggered starts or stops the EC2 instances. start_ec2_instances.py import boto3 ec2 = boto3.resource('ec2', 'us-east-1') def lambda_handler(event, context): instances = ec2.instances.filter(Filters=[{'...May 22, 2023·1 min read