Created
June 17, 2018 01:38
-
-
Save gavinzhou/2a13f3072ae42e7b5e3e2cfa80bc01b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import boto3 | |
import time | |
from botocore.client import ClientError | |
from datetime import datetime, timedelta, tzinfo | |
ec2 = boto3.client('ec2') | |
instances = ["i-xxxx1","i-xxxx4"] | |
image_prefix = "automatic_creation_" | |
def lambda_handler(event, context): | |
for instance in instances: | |
create_image(image_prefix + tag_name(instance), instance) | |
def create_image(prefix, instanceid): | |
imagename = "_".join([prefix, datetime.now().strftime("%Y-%m-%d")]) | |
try: | |
# create image noreboot | |
response = ec2.create_image( | |
InstanceId=instanceid, | |
Name=imagename, | |
Description='created automatically by Lambda', | |
NoReboot=True, | |
) | |
return | |
except ClientError as e: | |
print(str(e)) | |
def tag_name(instance_id): | |
tags = ec2.describe_instances(InstanceIds=[instance_id]) | |
for tag in tags['Reservations'][0]['Instances'][0]['Tags']: | |
if tag['Key'] == 'Name': | |
return tag['Value'] | |
else: | |
return instance_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment