Skip to content

Commit

Permalink
Merge branch 'master' into time_sleep_nvd_retry
Browse files Browse the repository at this point in the history
  • Loading branch information
achantavy authored Dec 6, 2024
2 parents 5309729 + a059214 commit 89b01ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cartography/models/aws/ec2/network_acl_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class EC2NetworkAclRuleNodeProperties(CartographyNodeProperties):
fromport: PropertyRef = PropertyRef('FromPort')
toport: PropertyRef = PropertyRef('ToPort')
cidrblock: PropertyRef = PropertyRef('CidrBlock')
Ipv6CidrBlock: PropertyRef = PropertyRef('Ipv6CidrBlock')
ipv6cidrblock: PropertyRef = PropertyRef('Ipv6CidrBlock')
egress: PropertyRef = PropertyRef('Egress')
rulenumber: PropertyRef = PropertyRef('RuleNumber')
ruleaction: PropertyRef = PropertyRef('RuleAction')
Expand Down
2 changes: 1 addition & 1 deletion docs/root/modules/aws/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ For additional explanation see https://docs.aws.amazon.com/vpc/latest/userguide/
| fromport | First port in the range that this rule applies to |
| toport | Last port in the range that this rule applies to |
| cidrblock | The IPv4 network range to allow or deny, in CIDR notation. |
| Ipv6CidrBlock | The IPv6 network range to allow or deny, in CIDR notation. You must specify an IPv4 CIDR block or an IPv6 CIDR block. |
| ipv6cidrblock | The IPv6 network range to allow or deny, in CIDR notation. You must specify an IPv4 CIDR block or an IPv6 CIDR block. |
| egress | Indicates whether the rule is an egress rule (applied to traffic leaving the subnet). |
| rulenumber | The rule number for the entry. ACL entries are processed in ascending order by rule number. |
| ruleaction | Indicates whether to `allow` or `den` the traffic that matches the rule. |
Expand Down

0 comments on commit 89b01ea

Please sign in to comment.