Skip to content

Commit

Permalink
fix(neptune-cluster): filter on engine to neptune
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Jan 2, 2025
1 parent 30eff30 commit 323856a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/neptune-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ func (l *NeptuneClusterLister) List(_ context.Context, o interface{}) ([]resourc
resources := make([]resource.Resource, 0)

params := &neptune.DescribeDBClustersInput{
Filters: []*neptune.Filter{
{
Name: aws.String("engine"),
Values: []*string{aws.String("neptune")},
},
},
MaxRecords: aws.Int64(100),
}

Expand Down

0 comments on commit 323856a

Please sign in to comment.