Github

A code hosting platform for version control and collaboration tool.

Example Terraform Resource Usage


resource "apono_integration" "github-integration" {
  name                     = "Github"
  type                     = "github"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  metadata = {
    org = "<Organization>"
  }
  aws_secret = {
    region    = "aws_region_template_value"
    secret_id = "aws_secret_id_template_value"
  }
}

Schema


  • type github

  • connected_resource_types List of resource types to sync. The following are the available resource type/s you can use:

    • github

    • github-repository

Metadata

  • org (Required | String) Organization

Last updated