获取 AWS 安全组规则 ID
Getting AWS Security group rule ID
有谁知道如何通过 AWS SDK 获取此安全组规则 ID?
我用这个
aws ec2 describe-security-groups --group-ids sg-0ad9f9694512344
但似乎 return 任何以 sgr-
开头的东西
安全组规则 ID 是最近才引入的(2021 年 7 月)。
参见:Easily Manage Security Group Rules with the New Security Group Rule ID | AWS News Blog
因此,您的 SDK 可能需要更新。
我检查了 Python (boto3) 的 AWS SDK,它已经有 describe_security_group_rules()
个可用。
AWS CLI 还有:describe-security-group-rules
有谁知道如何通过 AWS SDK 获取此安全组规则 ID?
我用这个
aws ec2 describe-security-groups --group-ids sg-0ad9f9694512344
但似乎 return 任何以 sgr-
开头的东西安全组规则 ID 是最近才引入的(2021 年 7 月)。
参见:Easily Manage Security Group Rules with the New Security Group Rule ID | AWS News Blog
因此,您的 SDK 可能需要更新。
我检查了 Python (boto3) 的 AWS SDK,它已经有 describe_security_group_rules()
个可用。
AWS CLI 还有:describe-security-group-rules