I am trying to search service which can query the gcp resources configuration details, Just similar to Azure Resource Graph Query & AWS Config Query
Asked
Active
Viewed 226 times
1
-
2Are you looking for this? https://cloud.google.com/asset-inventory/docs/overview – guillaume blaquiere Oct 10 '20 at 12:55
1 Answers
1
If you have the cloudasset.assets.searchAllResources
permission upon an organization, a folder or a project, you can list all the resources under the org using search-all-resources:
$ gcloud asset search-all-resources --scope=organizations/123
$ gcloud asset search-all-resources --scope=folders/456
$ gcloud asset search-all-resources --scope=projects/789
More details can be found in another post: How to find, list, or search resources across services (APIs) and projects in Google Cloud Platform?

Circy
- 1,058
- 11
- 15