Skip to content

Mark Grafana apps resources as stable #2159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions docs/resources/apps_dashboard_dashboard_v1beta1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
page_title: "grafana_apps_dashboard_dashboard_v1beta1 Resource - terraform-provider-grafana"
subcategory: "Grafana Apps"
description: |-
Manages Grafana dashboards via the new Grafana App Platform API. This resource is currently EXPERIMENTAL and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana dashboards using the new Grafana APIs.
Official documentation https://grafana.com/docs/grafana/latest/dashboards/HTTP API https://grafana.com/docs/grafana/latest/developers/http_api/dashboard/#new-dashboard-apis
---

# grafana_apps_dashboard_dashboard_v1beta1 (Resource)

Manages Grafana dashboards via the new Grafana App Platform API. This resource is currently **EXPERIMENTAL** and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana dashboards using the new Grafana APIs.

* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/)
* [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/dashboard/#new-dashboard-apis)



Expand Down
8 changes: 6 additions & 2 deletions docs/resources/apps_playlist_playlist_v0alpha1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
page_title: "grafana_apps_playlist_playlist_v0alpha1 Resource - terraform-provider-grafana"
subcategory: "Grafana Apps"
description: |-
Manages Grafana playlists via the new Grafana App Platform API. This resource is currently EXPERIMENTAL and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana playlists using the new Grafana APIs.
Official documentation https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/HTTP API https://grafana.com/docs/grafana/latest/developers/http_api/apis/
---

# grafana_apps_playlist_playlist_v0alpha1 (Resource)

Manages Grafana playlists via the new Grafana App Platform API. This resource is currently **EXPERIMENTAL** and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana playlists using the new Grafana APIs.

* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/)
* [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/apis/)



Expand Down
6 changes: 4 additions & 2 deletions internal/resources/appplatform/dashboard_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ func Dashboard() NamedResource {
Schema: ResourceSpecSchema{
Description: "Manages Grafana dashboards.",
MarkdownDescription: `
Manages Grafana dashboards via the new Grafana App Platform API. This resource is currently **EXPERIMENTAL** and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana dashboards using the new Grafana APIs.

* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/)
* [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/dashboard/#new-dashboard-apis)
`,
DeprecationMessage: "This resource is currently EXPERIMENTAL and may be subject to change.",
SpecAttributes: map[string]schema.Attribute{
"json": schema.StringAttribute{
Required: true,
Expand Down
6 changes: 4 additions & 2 deletions internal/resources/appplatform/playlist_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ func Playlist() NamedResource {
Schema: ResourceSpecSchema{
Description: "Manages Grafana playlists.",
MarkdownDescription: `
Manages Grafana playlists via the new Grafana App Platform API. This resource is currently **EXPERIMENTAL** and may be subject to change. It requires a development build of Grafana with specific feature flags enabled.
Manages Grafana playlists using the new Grafana APIs.

* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/create-manage-playlists/)
* [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/apis/)
`,
DeprecationMessage: "This resource is currently EXPERIMENTAL and may be subject to change.",
SpecAttributes: map[string]schema.Attribute{
"title": schema.StringAttribute{
Required: true,
Expand Down
Loading