使用boto3将AMI复制到另一个区域

时间:2018-08-08 00:38:07

标签: amazon-web-services amazon-ec2 boto3 ami

我正在尝试自动化我在AWS EC2控制台上具有的“复制AMI”功能,有人可以指出我一些通过boto3做到这一点的Python代码吗?

3 个答案:

答案 0 :(得分:2)

来自EC2 — Boto 3 documentation

response = client.copy_image(
    ClientToken='string',
    Description='string',
    Encrypted=True|False,
    KmsKeyId='string',
    Name='string',
    SourceImageId='string',
    SourceRegion='string',
    DryRun=True|False
)

确保将请求发送到目标区域,并传递对SourceRegion的引用。

答案 1 :(得分:1)

我大部分时间都使用EC2.ServiceResource这样的高级资源,因此以下是我同时使用EC2资源和低级客户端的代码,

source_image_id = '....'
profile = '...'
source_region = 'us-west-1'
source_session = boto3.Session(profile_name=profile, region_name=source_region)
ec2 = source_session.resource('ec2')
ami = ec2.Image(source_image_id)
target_region = 'us-east-1'
target_session = boto3.Session(profile_name=profile, region_name=target_region)
target_ec2 = target_session.resource('ec2')
target_client = target_session.client('ec2')
response = target_client.copy_image(
  Name=ami.name,
  Description = ami.description,
  SourceImageId = ami.id,
  SorceRegion = source_region
)
target_ami = target_ec2.Image(response['ImageId'])

答案 2 :(得分:0)

更准确地说。

假设您要复制的AMI位于 us-east-1 (源区域)中。 您的要求是将其复制到 us-west-2 (目标区域)

使boto3 EC2客户端会话到达us-west-2地区,然后在SourceRegion中传递us-east-1。

import boto3
session1 = boto3.client('ec2',region_name='us-west-2')

response = session1.copy_image(
   Name='DevEnv_Linux',
   Description='Copied this AMI from region us-east-1',
   SourceImageId='ami-02a6ufwod1f27e11',
   SourceRegion='us-east-1'
)