1

I am trying to search service which can query the gcp resources configuration details, Just similar to Azure Resource Graph Query & AWS Config Query

1 Answers1

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