Hello, I’m having issues with my dbt recipe:
type: dbt
config:
manifest_path: '<s3://cosmos-dbt-docs/manifest.json>'
catalog_path: '<s3://cosmos-dbt-docs/catalog.json>'
sources_path: '<s3://cosmos-dbt-docs/sources.json>'
test_results_path: '<s3://cosmos-dbt-docs/run_results.json>'
target_platform: redshift
aws_connection:
aws_access_key_id: redacted
aws_secret_access_key: redacted
aws_region: us-west-2
incremental_lineage: false
node_name_pattern:
deny:
- '.*sandbox_.*'```
Specifically, the `node_name_pattern.deny`. I'm trying to exclude any schemas that begin with `sandbox_` . Unfortunately, they are still appearing in my datasets after the ingestion completes. Posting in hopes that someone knows what I'm doing wrong