How to configure environment variables for dbtoperator

Hey @III

Based on airflow-dbt documentation, operators accept multiple arguments, including target.

Have you tried this:

    dbt_run= DbtRunOperator(
        task_id='dbt_run',
        select='/opt/airflow/dbt/models/core/example.sql',
        target=[YOUR_TARGET_NAME]
    )