website logo
HomeGithubSlack
⌘K
Overview
Quick Start
Supported Services
Running CloudGraph in EKS
Compliance
Rules Engine
AWS
Querying AWS Data
AWS Policy Packs
Billing Data
Services
Azure
Querying Azure Data
Azure Policy Packs
Services
GCP
Querying GCP Data
GCP Policy Packs
Services
K8s
Querying Kubernetes Data
Services
Docs powered by archbee 
19min

VPC Connector

Note: if you are running CloudGraph locally you can view the interactive, automatically generated documentation in either GraphQL Playground or Altair by clicking the docs button on the right-hand side of the screen. After reading the below information we highly suggest you use one of these tools to test your queries as they will autocomplete fields for you and let you know if your queries are valid before you even submit them.

Overview

You can currently query the following attributes and connections on an GCP VPC

GraphQL
|

Filtering

Get data for a single GCP VPC that you know the ID for:

GraphQL
|

Get data for all of the VPCs in a GCP project:

GraphQL
|

Get data for all of the VPCs that are NOT in a GCP project:

GraphQL
|

Advanced Filtering

Get data for all of the VPCs that have cloud functions in them:

GraphQL
|

Use multiple filter selectors, (i.e. has, and, not, or) to get data for all of the VPCs that have cloud functions AND subnets in them OR that do not have networks in them. Note that you can use has, and, not, or completely independently of each other:

GraphQL
|

You may also filter using a regex when filtering on a string field like, ipCidrRange if you want to look for a value that matches say, 10.0.0.0:

GraphQL
|

Ordering

You can order the results you get back either asc or desc depending on your preference:

GraphQL
|

Only select and return the first two VPCs that are found:

GraphQL
|

Only select and return the first two VPCs that are found, but offset by one so VPCs two & three are returned:

GraphQL
|

Aggregation

Count the number of VPCs across all scanned GCP accounts:

GraphQL
|

Count the number of VPCs in a single account. Note that you can apply all of the same filters that are listed above to aggregate queries:

GraphQL
|

Examples

Get the Networks for a given VPC using advanced filtering:

GraphQL
|

With CloudGraph you can run multiple queries at the same time so you can combine the above two queries if you like:

GraphQL
|

When you think, "in terms of a graph", you can do almost anything with CloudGraph. Say for example that you want to know what cloud functions don't belong to a VPC (i.e. they don't leverage VPC networking). Because CloudGraph connects all resources that have relationships, such as VPC parents to their cloud function children, you are able to answer this question easily. Simply check to see what cloud functions the VPC is "connected" to, and compare that against the list of all cloud functions like so:

GraphQL
|

Kitchen Sink

Putting it all together; get all data for all VPCs across all regions for all scanned GCP accounts in a single query. For the purposes of this example we will only get direct children of the VPCs:

GraphQL
|

References

GCP VPC documentation

Dgraph documentation on querying

Updated 02 Jun 2022
Did this page help you?
Yes
No
UP NEXT
Subnet
Docs powered by archbee 
TABLE OF CONTENTS
Overview
Filtering
Advanced Filtering
Ordering
Aggregation
Examples
Kitchen Sink
References