我编写此代码是为了通过多个区域的Costcenter标记的值列出实例。我将两个参数传递给脚本,配置文件和div。当我更改配置文件参数时,它将继续使用默认配置文件。我已经测试了打印变量内容,并且看到变量中的数据就是我传递的内容。我有多个配置文件,并且希望能够针对我设置的任何配置文件运行此配置文件。
import boto3, sys
def intances_by_tag(profile, div):
ec2 = boto3.resource('ec2')
boto3.session.Session(profile_name=profile)
instances = ec2.instances.filter(
Filters=[
{'Name': 'tag:Costcenter', 'Values': [div]}
]
)
for x in instances:
for tag in x.tags:
if tag["Key"] == 'Name':
a = tag["Value"]
print('{}'.format(a))
intances_by_tag(str(sys.argv[1]), str(sys.argv[2]))
问题来源:stackoverflow
当我使用Mon的答案时,脚本无法找到EC2实例属性。这就是我现在正在使用的:
import boto3, sys
profile = str(sys.argv[1])
boto3.setup_default_session(profile_name=profile)
ec2 = boto3.resource('ec2')
div = str(sys.argv[2])
def intances_by_tag(profile, div):
instances = ec2.instances.filter(
Filters=[
{'Name': 'tag:Costcenter', 'Values': [div]}
]
)
for x in instances:
for tag in x.tags:
if tag["Key"] == 'Name':
a = tag["Value"]
print('{}'.format(a))
intances_by_tag(profile, div)
回答来源:stackoverflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。