Google IAP Token

Know the component and how to use it.

Patricia Lopes Ribeiro avatar
Written by Patricia Lopes Ribeiro
Updated over a week ago

IMPORTANT: This documentation has been discontinued. Read the updated Google IAP Token documentation on our new documentation portal.

The Google IAP Token component enables users to generate OpenID-type tokens for IAP (Identity Aware Proxy) proxies authentication.

Take a look at the configuration parameters of the component:

  • IAP Client ID: it's the OAuth client ID, generated through the GCP platform, for resources protected by IAP.

  • Private Key: it's the Account key containing the private key from the Google service account.

  • Fail On Error: when activated, this parameter suspends the pipeline execution. Otherwise, the pipeline execution proceeds, but the result will show a false value for the “success” property.

IMPORTANT: In order to generate the token, it’s necessary to create a service account on Google Cloud and use the private key to configure an Account on the Digibee Platform.

Messages flow

Input

No specific input message is expected. All it takes is to fill the required fields of each operation.

Output

Object

{
"success": true,
"token": "eyJhbGciOiJSUz",
"refreshToken": "eyJhbGciOiJSUzI1N"
}

Error

{
"success": false,
"message": "com.digibee.pipelineengine.exception.PipelineEngineConfigurationException: Error loading connector google-authenticator-connector. Error: com.digibee.pipelineengine.exception.PipelineEngineConfigurationException: Invalid account type received: GOOGLE_KEY"
}

  • success: “false” due to an execution error.

  • message: it’s the component error message.

  • error: it’s the error message received from the Google IAP Token component.

To better understand the Platform messages flow, click here and read our article.

Did this answer your question?