Skip to main content

How do I use OIDC credentials when I create transformations using python SDK

  • January 19, 2022
  • 0 replies
  • 104 views

You need to provide “source_oidc_credentials” and “destination_oidc_credentials” run your transformation via API/SDK

Below is the code sample how to use OIDC credentials in your transformations

transformations = [
     Transformation(
         external_id="<external_id>",
         name="<name>",
         query="<Query>",
         destination=TransformationDestination.raw("<Database>", "<Table>"),
         conflict_mode="<upsert>",
         source_oidc_credentials=OidcCredentials(
            client_id="<CLIENT_ID>",
            client_secret="<CLIENT_SECRET>",
            scopes=f"<scopes>",
            token_uri=<"TOKEN_URL">,
            cdf_project_name=<"COGNITE_PROJECT">
        ),
        destination_oidc_credentials=OidcCredentials(
            client_id="<CLIENT_ID>",
            client_secret="<CLIENT_SECRET>",
            scopes=f"<scopes>",
            token_uri=<"TOKEN_URL">,
            cdf_project_name=<"COGNITE_PROJECT">
        ),
     ),
 ]

 

Scopes and token_uri: The Scopes and token_uri can be taken from the
following location in Fusion:

 

  1. Navigate to Transformations (Integrate Transform data)
  2. Click on “New Transformations”
  3. Click on “Schedule and Run”
  4. Click on “Use OIDC” in “Read credentials”
  5. Click on “Set read OIDC credentials”

 

0 replies

Be the first to reply!

Reply


Cookie Policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings