Skip to content

Commit

Permalink
Update docs/development.md
Browse files Browse the repository at this point in the history
Co-authored-by: Letha <letha@mondoo.com>
  • Loading branch information
imilchev and misterpantz authored Feb 2, 2024
1 parent bcde272 commit 4c14ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private gcp.project.computeService.address {
}
```

The simple wait to implement the reference would be to call the GCP API every time `gcp.project.computeService.address.network` is executed. However, this means we are going to be doing an excessive amount of API calls when scanning large GCP projects. If we have 10 addresses, this would mean we will do 10 separate API calls to get the network for each of them.
The simple way to implement the reference would be to call the GCP API every time `gcp.project.computeService.address.network` is executed. However, this would generate an excessive amount of API calls when scanning large GCP projects. If we have 10 addresses, this would mean 10 separate API calls to get the network, one for each of them.

MQL has powerful caching capabilities that let us achieve the same end result with a single (or fewer) API calls.

Expand Down

0 comments on commit 4c14ea0

Please sign in to comment.