使用Python Boto列出AWS EC2实例安全组的入站
作者:互联网
我可以使用get_all_security_groups()列出所有安全组
我还可以列出安全组的入站规则.但我也想查看使用boto的规则(入站规则)的来源.
我试图在Google上找到答案,但看不到任何方法可以查看入站规则的来源.
如果有人知道,请分享
解决方法:
终于解决了
for group in self.conn.get_all_security_groups():
for rule in group.rules:
print dir(rule)
for grant in rule.grants:
print dir(grant)
感谢boto用户的邮件列表
标签:amazon-web-services,boto,python 来源: https://codeday.me/bug/20191123/2064637.html