Grafana

Grafana is an open-source analytics and monitoring platform

Example Usage


grafana-integration.tf
resource "apono_integration" "grafana-integration" {
  name                     = "Grafana"
  type                     = "grafana"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["grafana-datasource"]
  metadata = {
    address = "<Grafana Portal URL>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}

Schema


  • type grafana

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • grafana-datasource

Integration Config


  • address (Required | String) Grafana Portal URL

Last updated

Was this helpful?