moiseenkov commented on code in PR #39873: URL: https://github.com/apache/airflow/pull/39873#discussion_r1633641842
########## airflow/providers/google/cloud/utils/credentials_provider.py: ########## @@ -350,6 +365,24 @@ def _get_credentials_using_credential_config_file(self): return credentials, project_id + def _get_credentials_using_credential_config_file_and_token_supplier(self): + self._log_info( + "Getting connection using credential configuration file and external Identity Provider." + ) + + if not self.credential_config_file: + raise AirflowException( + "Credential configuration is needed to use authentication by External Identity Provider." + ) Review Comment: Ok, thank you -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org