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>"
  }
  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.

Available resource types you can use
  • github-repository

  • github-organization-role

  • github-team

Integration Config


  • org (Required | String) Organization

Last updated

Was this helpful?