Skip to content

Commit

Permalink
Add missing indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
achantavy committed Sep 11, 2023
1 parent 3c7b0bd commit 1426cff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Empty file.
6 changes: 3 additions & 3 deletions cartography/models/aws/ec2/networkinterface_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ class EC2NetworkInterfaceInstanceNodeProperties(CartographyNodeProperties):
# arn: PropertyRef = PropertyRef('Arn', extra_index=True) TODO use arn; issue #1024
id: PropertyRef = PropertyRef('NetworkInterfaceId')
status: PropertyRef = PropertyRef('Status')
mac_address: PropertyRef = PropertyRef('MacAddress')
mac_address: PropertyRef = PropertyRef('MacAddress', extra_index=True)
description: PropertyRef = PropertyRef('Description')
private_dns_name: PropertyRef = PropertyRef('PrivateDnsName')
private_ip_address: PropertyRef = PropertyRef('PrivateIpAddress')
private_dns_name: PropertyRef = PropertyRef('PrivateDnsName', extra_index=True)
private_ip_address: PropertyRef = PropertyRef('PrivateIpAddress', extra_index=True)
region: PropertyRef = PropertyRef('Region', set_in_kwargs=True)
lastupdated: PropertyRef = PropertyRef('lastupdated', set_in_kwargs=True)

Expand Down

0 comments on commit 1426cff

Please sign in to comment.