Skip to content

Commit

Permalink
Fix incorrect results being returned from qualified queries for aws_o…
Browse files Browse the repository at this point in the history
…rganizations_account table fixes #2230
  • Loading branch information
cbruno10 committed Jun 28, 2024
1 parent 542d3e1 commit 28ba373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/table_aws_organizations_account.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func tableAwsOrganizationsAccount(_ context.Context) *plugin.Table {
List: &plugin.ListConfig{
Hydrate: listOrganizationsAccounts,
KeyColumns: plugin.KeyColumnSlice{
{Name: "parent_id", Require: plugin.Optional},
{Name: "parent_id", Require: plugin.Optional, CacheMatch: "exact"},
},
Tags: map[string]string{"service": "organizations", "action": "ListAccounts"},
},
Expand Down

0 comments on commit 28ba373

Please sign in to comment.