Excluding schemas with `sandbox_` prefix in dbt recipe node_name_pattern.deny

Original Slack Thread

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![attachment](https://files.slack.com/files-pri/TUMKD5EGJ-F061XLZ51DH/screenshot_2023-10-19_at_10.08.29___am.png?t=xoxe-973659184562-6705490291811-6708051934148-dd1595bd5f63266bc09e6166373c7a3c)

Try pattern “^sandbox_”

that worked! thanks!