Как создать образ EC2 из запущенного экземпляра с помощью boto?

Я пытаюсь создать простой сценарий резервного копирования на Python для моих экземпляров EC2. Целью этого сценария является создание ежедневных / еженедельных снимков текущего компьютера (см. этот вопрос на ServerFault ). Я использую пакет python boto для API EC2 и хочу создать EBS AMI из заданного экземпляра (например, «Создать образ» в ElasticFox действие)

# This script will look up all your running EC2 images, find the current one, and back it up by creating an AMI 

# Configuration
accessKeyId = "..."
accessKeySecret = "..."
target = "..."

def resolveIp(target):
    import socket
    ip = repr(socket.gethostbyname_ex(target)[2][0])
    return ip

def find_target(target, connection) :
    ip = resolveIp(target)
    print "Finding instance for " + target + " (IP " + ip + ")"
    reservations = connection.get_all_instances();
    for reservation in reservations:
        instances = reservation.instances
        if len(instances) != 1:
            print "Skipping reservation " + reservation
            continue
        instance = instances[0]
        instanceIp = resolveIp(instance.dns_name)
        if instanceIp == ip:
            return instance

    raise Exception("Can't find instance with IP " + ip)

from boto.ec2.connection import EC2Connection

print "Connecting to EC2"
conn = EC2Connection(accessKeyId, accessKeySecret)
print "Connected to EC2"

instance = find_target(target, conn)
print "Backing up instance '{}'".format(instance)

# Now, I'd like to create a new image out of this instance
# Can you help?

(Также сообщается как о проблеме на странице проекта Boto , так как я не нашел список рассылки)

9
задан Community 13 April 2017 в 12:13
поделиться