Integration connectors

Is it possible to download integration connectors configuration from GCP?

1 Like

Hi @rajidhamu ,

Welcome to Google Cloud Community!

You can’t directly download the full Integration Connectors configuration from GCP due to security reasons. However, you have options:

Access specific details:

  • View some info like connection name, type, and project ID in the GCP console.
  • See the configured authentication type (e.g., API key).

Alternative approaches:

  • Manually document needed details.
  • Use the visual flow designer in Application Integration.
  • Rebuild the integration using tools like Cloud Functions or Workflows (allows exporting code).

Remember: Downloading sensitive info is risky. Prioritize secure storage and access control.

1 Like

Hi @rajidhamu

You can get the connection details via the Integration Connectors API.

https://cloud.google.com/integration-connectors/docs/reference/rest

The GET operation on this REST resource will give you the detailed configuration. Note, any passwords or secrets will be a reference to the secret manager resource, not the actual password or secret :

REST Resource: v1.projects.locations.connections

R,
Scott

After fetching the configuration details using REST API as @shaaland suggested, terraform can be used to manage connections across environments for CI/CD

https://cloud.google.com/integration-connectors/docs/sample-terraform-template

2 Likes

Let me try this option.Thank you @shaaland