Google IAP Token

Discover more about the Google IAP Token component and how to use it on the Digibee Integration Platform.

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

Parameters

Take a look at the configuration parameters of the component. Parameters supported by Double Braces expressions are marked with (DB).

ParameterDescriptionDefault valueData type

IAP Client ID

It's the OAuth client ID, generated through the GCP platform, for resources protected by IAP.

N/A

String

Private Key

It's the Account key containing the private key from the Google service account.

N/A

String

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.

False

Boolean

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 Integration 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 understand how the messages flow work in the Digibee Integration Platform, read the Messages processing documentation.

Last updated