github.com/GoogleCloudPlatform/terraformer@v0.8.18/docs/grafana.md (about) 1 ### Use with [Grafana](https://grafana.com) 2 3 This provider uses the [terraform-provider-grafana](https://registry.terraform.io/providers/grafana/grafana/latest). 4 5 #### Example 6 7 ``` 8 GRAFANA_AUTH=api_token GRAFANA_URL=https://stack.grafana.net ./terraformer import grafana -r=dashboards // Import with Grafana API token 9 GRAFANA_AUTH=username:password GRAFANA_URL=https://stack.grafana.net ./terraformer import grafana -r=dashboards // Import with HTTP basic auth 10 ``` 11 12 #### Configuration 13 14 | Env variable | Description | Required | Default | 15 | -------------------------- | -------------------------------------------------------------------- | --- | - | 16 | GRAFANA_AUTH | API token or HTTP basic auth (if pattern is `username:password`) | yes | - | 17 | GRAFANA_URL | URL to the Grafana instance, e.g. https://stack.grafana.net | yes | - | 18 | GRAFANA_ORG_ID | Grafana organisation ID | no | 1 | 19 | HTTPS_TLS_KEY | Path to TLS key file | no | - | 20 | HTTPS_TLS_CERT | Path to TLS cert file | no | - | 21 | HTTPS_CA_CERT | Path to CA cert file | no | - | 22 | HTTPS_INSECURE_SKIP_VERIFY | Whether to skip TLS certificate validation (1 for true, 0 for false) | no | 0 | 23 24 List of supported [Grafana](https://grafana.com) resources: 25 26 * `dashboard` 27 * `grafana_dashboard` 28 * `folder` 29 * `grafana_folder`