Skip to content

Commit

Permalink
Add indexes for version and release
Browse files Browse the repository at this point in the history
  • Loading branch information
achantavy committed Sep 18, 2023
1 parent 55c877c commit ff85b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cartography/models/aws/inspector/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class AWSInspectorPackageNodeProperties(CartographyNodeProperties):
findingarn: PropertyRef = PropertyRef('findingarn', extra_index=True)
name: PropertyRef = PropertyRef('name', extra_index=True)
arch: PropertyRef = PropertyRef('arch')
version: PropertyRef = PropertyRef('version')
release: PropertyRef = PropertyRef('release')
version: PropertyRef = PropertyRef('version', extra_index=True)
release: PropertyRef = PropertyRef('release', extra_index=True)
epoch: PropertyRef = PropertyRef('epoch')
manager: PropertyRef = PropertyRef('packageManager')
filepath: PropertyRef = PropertyRef('filePath')
Expand Down

0 comments on commit ff85b73

Please sign in to comment.