Skip to content

Commit f572d44

Browse files
authored
Add client nil checks to avoid panics (#2008)
* Add client nil checks to avoid panics * Update docs * Fix docs again * Update docs
1 parent 8ad5c07 commit f572d44

File tree

6 files changed

+57
-3
lines changed

6 files changed

+57
-3
lines changed

docs/resources/dashboard_public.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ subcategory: "Grafana OSS"
55
description: |-
66
Manages Grafana public dashboards.
77
Note: This resource is available only with Grafana 10.2+.
8-
Official documentation https://grafana.com/docs/grafana/latest/dashboards/dashboard-public/HTTP API https://grafana.com/docs/grafana/next/developers/http_api/dashboard_public/
8+
Official documentation https://grafana.com/docs/grafana/latest/dashboards/share-dashboards-panels/shared-dashboards/HTTP API https://grafana.com/docs/grafana/next/developers/http_api/dashboard_public/
99
---
1010

1111
# grafana_dashboard_public (Resource)
@@ -14,7 +14,7 @@ Manages Grafana public dashboards.
1414

1515
**Note:** This resource is available only with Grafana 10.2+.
1616

17-
* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/dashboard-public/)
17+
* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/share-dashboards-panels/shared-dashboards/)
1818
* [HTTP API](https://grafana.com/docs/grafana/next/developers/http_api/dashboard_public/)
1919

2020
## Example Usage

internal/resources/cloud/common.go

+9
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,14 @@ func (r *basePluginFrameworkResource) Configure(ctx context.Context, req resourc
104104
return
105105
}
106106

107+
if client.GrafanaCloudAPI == nil {
108+
resp.Diagnostics.AddError(
109+
"The Grafana Provider is missing a configuration for the Grafana Cloud API.",
110+
"Please ensure that cloud_api_url and cloud_access_policy_token are set in the provider configuration.",
111+
)
112+
113+
return
114+
}
115+
107116
r.client = client.GrafanaCloudAPI
108117
}

internal/resources/grafana/common_plugin_framework.go

+18
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@ func (r *basePluginFrameworkDataSource) Configure(ctx context.Context, req datas
3838
return
3939
}
4040

41+
if client.GrafanaAPI == nil || client.GrafanaAPIConfig == nil {
42+
resp.Diagnostics.AddError(
43+
"The Grafana Provider is missing a configuration for the Grafana API.",
44+
"Please ensure that url and auth are set in the provider configuration.",
45+
)
46+
47+
return
48+
}
49+
4150
r.client = client.GrafanaAPI
4251
r.config = client.GrafanaAPIConfig
4352
}
@@ -81,6 +90,15 @@ func (r *basePluginFrameworkResource) Configure(ctx context.Context, req resourc
8190
return
8291
}
8392

93+
if client.GrafanaAPI == nil || client.GrafanaAPIConfig == nil {
94+
resp.Diagnostics.AddError(
95+
"The Grafana Provider is missing a configuration for the Grafana API.",
96+
"Please ensure that url and auth are set in the provider configuration.",
97+
)
98+
99+
return
100+
}
101+
84102
r.client = client.GrafanaAPI
85103
r.config = client.GrafanaAPIConfig
86104
}

internal/resources/grafana/resource_dashboard_public.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Manages Grafana public dashboards.
2727
2828
**Note:** This resource is available only with Grafana 10.2+.
2929
30-
* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/dashboard-public/)
30+
* [Official documentation](https://grafana.com/docs/grafana/latest/dashboards/share-dashboards-panels/shared-dashboards/)
3131
* [HTTP API](https://grafana.com/docs/grafana/next/developers/http_api/dashboard_public/)
3232
`,
3333

internal/resources/machinelearning/resource_alert.go

+9
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,15 @@ func (r *alertResource) Configure(ctx context.Context, req resource.ConfigureReq
7676
return
7777
}
7878

79+
if client.MLAPI == nil {
80+
resp.Diagnostics.AddError(
81+
"The Grafana Provider is missing a configuration for the MLAPI API.",
82+
"Please ensure that url and auth are set in the provider configuration.",
83+
)
84+
85+
return
86+
}
87+
7988
r.mlapi = client.MLAPI
8089
}
8190

internal/resources/oncall/resources.go

+18
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,15 @@ func (r *basePluginFrameworkResource) Configure(ctx context.Context, req resourc
3636
return
3737
}
3838

39+
if client.OnCallClient == nil {
40+
resp.Diagnostics.AddError(
41+
"The Grafana Provider is missing a configuration for the OnCall API.",
42+
"Please ensure that oncall_url and oncall_access_token/auth are set in the provider configuration.",
43+
)
44+
45+
return
46+
}
47+
3948
r.client = client.OnCallClient
4049
}
4150

@@ -60,6 +69,15 @@ func (r *basePluginFrameworkDataSource) Configure(ctx context.Context, req datas
6069
return
6170
}
6271

72+
if client.OnCallClient == nil {
73+
resp.Diagnostics.AddError(
74+
"The Grafana Provider is missing a configuration for the OnCall API.",
75+
"Please ensure that oncall_url and oncall_access_token/auth are set in the provider configuration.",
76+
)
77+
78+
return
79+
}
80+
6381
r.client = client.OnCallClient
6482
}
6583

0 commit comments

Comments
 (0)