gpt4 book ai didi

python - 使用 boto,我如何命名新生成的 EC2 实例?

转载 作者:IT老高 更新时间:2023-10-28 20:27:40 25 4
gpt4 key购买 nike

我正在使用 boto 基于 AMI 生成一个新的 EC2 实例。

ami.run 方法有许多参数,但“名称”没有 - 也许它被称为不同的东西?

最佳答案

import boto
c = boto.connect_ec2(ec2_key, ec2_secret)
image = c.get_image(ec2_ami)

reservation = image.run(key_name=ec2_keypair,
security_groups=ec2_secgroups,
instance_type=ec2_instancetype)

instance = reservation.instances[0]
c.create_tags([instance.id], {"Name": instance_name})

关于python - 使用 boto,我如何命名新生成的 EC2 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9575148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com