Skip to content
This repository was archived by the owner on Jan 15, 2024. It is now read-only.

Commit c59af51

Browse files
Add TLSConfigurationMethod to JSONData (#66)
Related to grafana/terraform-provider-grafana#404 Co-authored-by: Will Marcantel <willm@extrahop.com>
1 parent 8c4f52c commit c59af51

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

datasource.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,11 @@ type LokiDerivedField struct {
8383
// JSONData is a representation of the datasource `jsonData` property
8484
type JSONData struct {
8585
// Used by all datasources
86-
TLSAuth bool `json:"tlsAuth,omitempty"`
87-
TLSAuthWithCACert bool `json:"tlsAuthWithCACert,omitempty"`
88-
TLSSkipVerify bool `json:"tlsSkipVerify,omitempty"`
89-
httpHeaderNames []string
86+
TLSAuth bool `json:"tlsAuth,omitempty"`
87+
TLSAuthWithCACert bool `json:"tlsAuthWithCACert,omitempty"`
88+
TLSConfigurationMethod string `json:"tlsConfigurationMethod,omitempty"`
89+
TLSSkipVerify bool `json:"tlsSkipVerify,omitempty"`
90+
httpHeaderNames []string
9091

9192
// Used by Athena
9293
Catalog string `json:"catalog,omitempty"`

0 commit comments

Comments
 (0)