For the complete documentation index, see llms.txt. This page is also available as Markdown.

Github

A code hosting platform for version control and collaboration tool.

Example Usage


github-integration.tf
resource "apono_integration" "github-integration" {
  name                     = "Github"
  type                     = "github"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["github-repository"]
  metadata = {
    org = "<Organization>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}
github-integration.tf
resource "apono_resource_integration" "github-integration" {
  name                     = "Github"
  type                     = "github"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["github-repository"]
  integration_config = {
    org = "<Organization>"
  }
  secret_store_config = {
    kubernetes = {
      name      = "name_template_value"
      namespace = "namespace_template_value"
    }
}

Schema


  • type github

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • github-repository

  • github-organization-role

  • github-team

  • github-owner-role

Integration Config


  • org (Required | String) Organization

Last updated

Was this helpful?