11 lines
No EOL
338 B
HCL
11 lines
No EOL
338 B
HCL
resource "grafana_data_source" "this" {
|
|
type = "prometheus"
|
|
name = var.datasource_name
|
|
url = var.datasource_url
|
|
basic_auth_enabled = true
|
|
basic_auth_username = var.datasource_username
|
|
|
|
secure_json_data_encoded = jsonencode({
|
|
basicAuthPassword = var.datasource_password
|
|
})
|
|
} |