I have the following CloudQuery configuration for two destinations:
```yaml
---
kind: destination
spec:
name: "gcs_aws"
path: "cloudquery/gcs"
registry: "cloudquery"
version: "v3.4.12"
spec:
bucket: "somebucket"
path: "aws"
format: "parquet"
batch_size: 10000
batch_size_bytes: 52428800 # 50 MiB
batch_timeout: 30s # 30 seconds
---
kind: destination
spec:
name: "gcs_gcp"
path: "cloudquery/gcs"
registry: "cloudquery"
version: "v3.4.12"
spec:
bucket: "somebucket"
path: "gcp"
format: "parquet"
batch_size: 10000
batch_size_bytes: 52428800 # 50 MiB
batch_timeout: 30s # 30 seconds
I don’t see a good way to avoid duplicating this in the documentation since the only difference is the path. Is there a way to set this in the two sources and have a single destination?