Cloud Function Custom Integration

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

Example Terraform Resource Usage


resource "apono_integration" "cloudfunction-custom-integration-integration" {
  name                     = "Cloud Function Custom Integration"
  type                     = "cloudfunction-custom-integration"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  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. The following are the available resource type/s you can use:

    • custom-cloud-function

Metadata

  • 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