FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

Grafana Provider

The Grafana provider configures data sources and dashboards in Grafana, which is a web application for creating, viewing and sharing metrics dashboards.

The provider configuration block accepts the following arguments:

Use the navigation to the left to read about the available resources.

Example Usage

provider "grafana" {
  url  = "http://grafana.example.com/"
  auth = "1234abcd"
}

resource "grafana_dashboard" "metrics" {
  config_json = "${file("grafana-dashboard.json")}"
}

See the source of this document at Terraform.io