Cloud Function Custom Integration

Cloud Function Custom Integration allows use GCP Cloud Function as a custom implementation for resource integration

Example Usage


cloudfunction-custom-integration-integration.tf
resource "apono_integration" "cloudfunction-custom-integration-integration" {
  name                     = "Cloud Function Custom Integration"
  type                     = "cloudfunction-custom-integration"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["custom-cloud-function"]
  metadata = {
    access_details = "<Access Details>"
    custom_parameters = "<Custom Parameters>"
    project_id = "<Project ID>"
    region = "<Region>"
    function_name = "<Function Name>"
  }
}

Schema


  • type cloudfunction-custom-integration

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • custom-cloud-function

Integration Config


  • access_details (Required | String) Access Details

  • custom_parameters (Required | String) Custom Parameters

  • project_id (Required | String) Project ID

  • region (Required | String) Region

  • function_name (Required | String) Function Name

Last updated

Was this helpful?