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

Commit

Permalink
Add TLSConfigurationMethod to JSONData (#66)
Browse files Browse the repository at this point in the history
Related to grafana/terraform-provider-grafana#404

Co-authored-by: Will Marcantel <[email protected]>
  • Loading branch information
wamarcantel and Will Marcantel authored Mar 3, 2022
1 parent 8c4f52c commit c59af51
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions datasource.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,11 @@ type LokiDerivedField struct {
// JSONData is a representation of the datasource `jsonData` property
type JSONData struct {
// Used by all datasources
TLSAuth bool `json:"tlsAuth,omitempty"`
TLSAuthWithCACert bool `json:"tlsAuthWithCACert,omitempty"`
TLSSkipVerify bool `json:"tlsSkipVerify,omitempty"`
httpHeaderNames []string
TLSAuth bool `json:"tlsAuth,omitempty"`
TLSAuthWithCACert bool `json:"tlsAuthWithCACert,omitempty"`
TLSConfigurationMethod string `json:"tlsConfigurationMethod,omitempty"`
TLSSkipVerify bool `json:"tlsSkipVerify,omitempty"`
httpHeaderNames []string

// Used by Athena
Catalog string `json:"catalog,omitempty"`
Expand Down

0 comments on commit c59af51

Please sign in to comment.