All Projects → grafana → Terraform Provider Grafana

grafana / Terraform Provider Grafana

Licence: mpl-2.0
Terraform Grafana provider

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Terraform Provider Grafana

Terraform Provider Tls
Provides utilities for working with Transport Layer Security keys and certificates. It provides resources that allow private keys, certificates and certficate requests to be created as part of a Terraform deployment.
Stars: ✭ 88 (-25.42%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Databricks
Databricks Terraform Provider
Stars: ✭ 119 (+0.85%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Google
Terraform Google Cloud Platform provider
Stars: ✭ 1,318 (+1016.95%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Vcd
Terraform VMware vCloud Director provider
Stars: ✭ 73 (-38.14%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Pagerduty
Terraform PagerDuty provider
Stars: ✭ 106 (-10.17%)
Mutual labels:  terraform, terraform-provider
Terraform
Terraform - Beginners | Intermediate | Advanced
Stars: ✭ 77 (-34.75%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Matchbox
Terraform provider for Matchbox on-premise / bare-metal provisioning
Stars: ✭ 100 (-15.25%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Secret
Terraform secret provider
Stars: ✭ 55 (-53.39%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Linode
Terraform Linode provider
Stars: ✭ 105 (-11.02%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Postgresql
As part of our introduction to self-service publishing in the Terraform Registry, this copy of the provider has been archived, and ownership has been transferred to active maintainers in the community. Please see the new location on the Terraform Registry: https://registry.terraform.io/providers/cyrilgdn/postgresql
Stars: ✭ 101 (-14.41%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Aiven
Terraform Aiven provider
Stars: ✭ 68 (-42.37%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Template
Terraform template provider
Stars: ✭ 119 (+0.85%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Fastly
Terraform Fastly provider
Stars: ✭ 65 (-44.92%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Tencentcloud
Terraform TencentCloud Provider
Stars: ✭ 85 (-27.97%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Sumologic Old
Go to the new provider repo --->
Stars: ✭ 60 (-49.15%)
Mutual labels:  terraform, terraform-provider
My Cheat Sheets
A place to keep all my cheat sheets for the complete development of ASIC/FPGA hardware or a software app/service.
Stars: ✭ 94 (-20.34%)
Mutual labels:  terraform, grafana
Terraform Provider Zabbix
Stars: ✭ 38 (-67.8%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Netlify
Terraform Netlify provider. Please note: This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
Stars: ✭ 51 (-56.78%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Namecheap
Terraform provider for Namecheap
Stars: ✭ 101 (-14.41%)
Mutual labels:  terraform, terraform-provider
Terraform Provider Okta
🎉 Now an official Terraform provider! 🚚 We've moved to https://github.com/terraform-providers/terraform-provider-okta/
Stars: ✭ 111 (-5.93%)
Mutual labels:  terraform, terraform-provider

Terraform Provider for Grafana

Build Status

Requirements

Development

If you're new to provider development, a good place to start is the Extending Terraform docs.

Set up your local environment by installing Go. Also recommended is Docker. Docker is not required, but it makes running a local Grafana instance for acceptance tests very easy.

Run unit tests:

make test

Run acceptance tests:

You could run the acceptance tests inside docker or outside of docker

make testacc-docker.

Alternatively,

# In one terminal, run a Grafana container.
# You may optionally override the image tag...
# GRAFANA_VERSION=7.3.4 \
make test-serve

# Alternatively, run Grafana with TLS:
# GRAFANA_VERSION=7.3.4 \
# make test-serve-tls

# In another...
GRAFANA_URL=http://localhost:3000 \
GRAFANA_AUTH=admin:admin \
GRAFANA_ORG_ID=1 \
make testacc

# Alternatively, run acceptance tests with TLS client certs:
# GRAFANA_URL=https://localhost:3001 \
# GRAFANA_ORG_ID=1 \
# GRAFANA_AUTH=admin:admin \
# GRAFANA_TLS_KEY=$PWD/testdata/client.key \
# GRAFANA_TLS_CERT=$PWD/testdata/client.crt \
# GRAFANA_CA_CERT=$PWD/testdata/ca.crt \
# make testacc

This codebase leverages grafana/grafana-api-golang-client as its Grafana API client. All resources and data sources should leverage this.

Releasing

Builds and releases are automated with GitHub Actions and GoReleaser. The changelog is managed with github-changelog-generator.

Create a new release with the release Make target:

RELEASE_VERSION=v... \
CHANGELOG_GITHUB_TOKEN=... \
make release

Once the command exits, you can monitor the rest of the process on the Actions UI.

The Action creates the release, but leaves it in "draft" state. Open it up in a browser and if all looks well, mash the publish button.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].