Grafana v0.1.0 published on Monday, Sep 11, 2023 by lbrlabs
Grafana Cloud
The Grafana provider for Pulumi can be used to provision any of the cloud resources available in Grafana Cloud or a self hosted Grafana instance The Grafana provider must be configured with credentials to deploy and update resources in Grafana.
Example
import * as grafana from "@lbrlabs/pulumi-grafana";
const sa = new grafana.ServiceAccount("example", {
role: "Viewer",
})
import lbrlabs_pulumi_grafana as grafana
service_account = grafana.ServiceAccount(
"example",
role="Viewer"
)