Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

AWS Tutorials: AWS CodeBuild – Buildspec code for creating AMI from running instances


version: 0.2

phases:
  build:
    commands:
      - |
        #!/bin/bash

		# Author - Rajesh Kumar
		
        # Set AWS region
        export AWS_DEFAULT_REGION=us-east-1

        # Get running all instance IDs
        instance_ids=$(aws ec2 describe-instances --filters "Name=instance-state-name,Values=running" "Name=tag:environment,Values=uat" --query 'Reservations[].Instances[].InstanceId' --output text)

        echo "List of Instances: $instance_ids"

        # Create AMIs from instance IDs
        for instance_id in $instance_ids; do
          instance_name=$(aws ec2 describe-instances --instance-ids $instance_id --query 'Reservations[].Instances[].Tags[?Key==`Name`].Value' --output text)
          timestamp=$(date +%Y-%m-%d-%H-%M-%S)
          ami_name="$instance_name-$timestamp"
          aws ec2 create-image --instance-id $instance_id --name "$ami_name" --no-reboot
        done

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "EC2Read",
            "Effect": "Allow",
            "Action": [
                "ec2:DescribeInstances",
                "ec2:DescribeImages",
                "ec2:CreateImage"
            ],
            "Resource": "*"
        }
    ]
}

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x