Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions providers/dbt/cloud/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,17 @@ triggers:
connection-types:
- hook-class-name: airflow.providers.dbt.cloud.hooks.dbt.DbtCloudHook
connection-type: dbt_cloud
ui-field-behaviour:
hidden-fields:
- schema
- port
relabeling:
login: Account ID
password: API Token
host: Tenant
placeholders:
host: "Defaults to 'cloud.getdbt.com'."
extra: Optional JSON-formatted extra.

extra-links:
- airflow.providers.dbt.cloud.operators.dbt.DbtCloudRunJobOperatorLink
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ def get_provider_info():
{
"hook-class-name": "airflow.providers.dbt.cloud.hooks.dbt.DbtCloudHook",
"connection-type": "dbt_cloud",
"ui-field-behaviour": {
"hidden-fields": ["schema", "port"],
"relabeling": {"login": "Account ID", "password": "API Token", "host": "Tenant"},
"placeholders": {
"host": "Defaults to 'cloud.getdbt.com'.",
"extra": "Optional JSON-formatted extra.",
},
},
}
],
"extra-links": ["airflow.providers.dbt.cloud.operators.dbt.DbtCloudRunJobOperatorLink"],
Expand Down