我使用的是Python SDK boto3,以便将所有安全组都放入该区域,但我的编号错误。有我的代码:
rubberBand animated
当有数百个安全组时,结果为2。
我做错了什么?
答案 0 :(得分:1)
请再次检查describe_security_groups文档返回值。
您需要从返回字典键[“SecurityGroups”]
中读取列表 for sg in ec2.describe_security_groups()["SecurityGroups"]:
count = count + 1
print(count)