使用boto3从EC2实例显示其他标签

时间:2016-11-08 15:48:46

标签: python amazon-web-services amazon-ec2 aws-cli boto3

我正在尝试使用boto3从我的EC2实例中提取其他数据。这包括env,region,tags等

使用当前代码

import boto3

ec2 = boto3.resource('ec2')

instances = ec2.instances.filter(
    Filters = [{'Name': 'instance-state-name', 'Values': ['running','stopped','terminated']}])
for instance in instances:
    print(instance.id, instance.instance_type,)

输出结果为:

    i-xxxxxxxx m3.medium
    i-xxxxxxxx m3.medium
    i-xxxxxxxx m3.medium

我发现您可以使用过滤器(http://boto3.readthedocs.io/en/latest/guide/migrationec2.html),但对我可以过滤哪些关键字以及在哪里找到它们感到困惑。

0 个答案:

没有答案