pulumiverse / pulumi-grafana

Pulumi provider for Grafana
Apache License 2.0
19 stars 10 forks source link

Bump terraform-provider-grafana version from 2.4.0 to 2.13.0 #114

Closed ImTomEddy closed 5 months ago

ImTomEddy commented 5 months ago

This PR upgrades the terraform-provider-grafana version from 2.4.0 to 2.13.0.

This version of the terraform provider has support for the terraform plugin framework as well as the terraform plugin sdk (legacy).

To get the version bump and introduce new features, I've used the plugin sdk for now.

Fixes #113

ImTomEddy commented 5 months ago

I've noticed that this repo contains a GitHub action to automatically do this on the creation of an issue however, I don't believe it would've worked in this case as the provider method signature changed between v2.7.0 and v2.8.0.

before

func Provider(version string) func() *schema.Provider {

after

func Provider(version string) *schema.Provider {