You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have connections to PostgreSQL databases that have SSL Mode set to disabled, and we would like to be able to set this in the jsonData of the grafana_data_source resource. Currently, after the resource is created or modified we have to go in manually to the connection settings and disable it:
Here is an example of a postgres data source we're using that we would like to work with the json_data support. Currently we're omitting the json_data setting with ssl_mode since it's not supported:
The SSL Mode in the PostgreSQL connection should be set to disable.
Actual Behavior
Terraform plan results in:
Error: Unsupported argument
on grafana.tf line 113, in resource "grafana_data_source""windb2":
113: ssl_mode = "disable"
An argument named "ssl_mode" is not expected here.
The text was updated successfully, but these errors were encountered:
We have connections to PostgreSQL databases that have SSL Mode set to disabled, and we would like to be able to set this in the jsonData of the grafana_data_source resource. Currently, after the resource is created or modified we have to go in manually to the connection settings and disable it:
It would be nice if more jsonData settings listed here could be set in the
grafana_data_source
resource: https://grafana.com/docs/grafana/latest/administration/provisioning/#example-data-source-config-fileAffected Resource(s)
Terraform Configuration Files
Here is an example of a postgres data source we're using that we would like to work with the
json_data
support. Currently we're omitting thejson_data
setting withssl_mode
since it's not supported:Expected Behavior
The SSL Mode in the PostgreSQL connection should be set to disable.
Actual Behavior
Terraform plan results in:
The text was updated successfully, but these errors were encountered: