CloudQuery Recipes
This section provides set of basic examples for variety of cloudquery sources and destinations plugins.
Note: Source and destinations plugins recipes are separate in this directory and you will need to combine them to run sync.
- Combine them easily by either using two different files and running
cloudquery sync aws.yml gcp.yml
kind: source
spec:
name: aws
path: cloudquery/aws
version: "v7.2.0"
tables: ["*"]
destinations: ["postgresql"]
kind: destination
spec:
name: postgresql
path: cloudquery/postgresql
version: "v1.7.14"
spec:
connection_string: ${PG_CONNECTION_STRING}
- Or combine source and destination to a single file
kind: source
spec:
name: aws
path: cloudquery/aws
version: "v7.2.0"
tables: ["*"]
destinations: ["postgresql"]
---
kind: destination
spec:
name: postgresql
path: cloudquery/postgresql
version: "v1.7.14"
spec:
connection_string: ${PG_CONNECTION_STRING}
Last updated on November 28, 2022