aws python boto3没有返回正确数量的安全组

时间:2016-12-14 13:00:50

标签: python aws-sdk aws-cli boto3 aws-security-group

我使用的是Python SDK boto3,以便将所有安全组都放入该区域,但我的编号错误。有我的代码:

rubberBand animated

当有数百个安全组时,结果为2。

我做错了什么?

1 个答案:

答案 0 :(得分:1)

请再次检查describe_security_groups文档返回值。

您需要从返回字典键[“SecurityGroups”]

中读取列表
 for sg in ec2.describe_security_groups()["SecurityGroups"]:
        count = count + 1
    print(count)