Implementation:Astronomer Astronomer cosmos GoogleCloudOauthProfileMapping
| Knowledge Sources | |
|---|---|
| Domains | Profile_Mapping, BigQuery |
| Last Updated | 2026-02-07 17:00 GMT |
Overview
Concrete tool for mapping Airflow google_cloud_platform connections to dbt bigquery profiles (oauth method) provided by astronomer-cosmos.
Description
The GoogleCloudOauthProfileMapping maps an Airflow google_cloud_platform connection to a dbt bigquery profile using the oauth authentication method. It translates connection parameters into the YAML structure that dbt expects in `profiles.yml`. The profile method is set to `oauth`, relying on Application Default Credentials or the token provided by the Airflow connection.
Usage
Use this profile mapping when configuring Cosmos to run dbt commands against a BigQuery backend with OAuth authentication. Assign it to `ProfileConfig(profile_mapping=...)` when the target Airflow connection uses the `google_cloud_platform` connection type.
Code Reference
Source Location
- Repository: Astronomer_Astronomer_cosmos
- File: cosmos/profiles/bigquery/oauth.py
Signature
class GoogleCloudOauthProfileMapping(BaseProfileMapping):
airflow_connection_type: str = "google_cloud_platform"
dbt_profile_type: str = "bigquery"
dbt_profile_method: str = "oauth"
Import
from cosmos.profiles.bigquery import GoogleCloudOauthProfileMapping
I/O Contract
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
| conn_id | str | Yes | Airflow connection ID for BigQuery (google_cloud_platform type) |
Outputs
| Name | Type | Description |
|---|---|---|
| profile | dict | dbt profile YAML dictionary |
| env_vars | dict | Environment variables for secret fields |
Usage Examples
from cosmos.config import ProfileConfig
from cosmos.profiles.bigquery import GoogleCloudOauthProfileMapping
profile_config = ProfileConfig(
profile_name="default",
target_name="dev",
profile_mapping=GoogleCloudOauthProfileMapping(conn_id="google_cloud_default"),
)