diff --git a/example_configs/parallel.yml b/example_configs/parallel.yml index 902b5be..18c6f54 100644 --- a/example_configs/parallel.yml +++ b/example_configs/parallel.yml @@ -2,7 +2,7 @@ kind: source spec: name: 'aws-REGION_PLACEHOLDER' path: cloudquery/aws - version: 'v27.15.0' # latest version of aws plugin + version: 'v27.17.0' # latest version of aws plugin destinations: ['postgresql-REGION_PLACEHOLDER'] tables: [aws_s3_buckets] skip_dependent_tables: true @@ -14,6 +14,6 @@ kind: destination spec: name: 'postgresql-REGION_PLACEHOLDER' path: cloudquery/postgresql - version: 'v8.5.2' # latest version of postgresql plugin + version: 'v8.5.3' # latest version of postgresql plugin spec: connection_string: ${CQ_DSN} # The CQ_DSN environment variable will be set by GitHub Action workflow diff --git a/example_configs/serial.yml b/example_configs/serial.yml index f5a4cf2..4c3d182 100644 --- a/example_configs/serial.yml +++ b/example_configs/serial.yml @@ -2,7 +2,7 @@ kind: source spec: name: 'aws' path: 'cloudquery/aws' - version: 'v27.15.0' # latest version of aws plugin + version: 'v27.17.0' # latest version of aws plugin destinations: ['postgresql'] tables: [aws_s3_buckets] skip_dependent_tables: true @@ -11,6 +11,6 @@ kind: destination spec: name: 'postgresql' path: 'cloudquery/postgresql' - version: 'v8.5.2' # latest version of postgresql plugin + version: 'v8.5.3' # latest version of postgresql plugin spec: connection_string: 'postgresql://postgres:pass@localhost:5432/postgres?sslmode=disable'