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

Commit

Permalink
Fix lucene_query in Terraform modules (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneeth-n authored Jan 20, 2022
1 parent 5568f70 commit de5501e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform_modules/ecs_alb_service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "enable" {

locals {
elasticsearch_data_source_args = var.grafana_configuration.elasticsearch_data_source == null ? [] : ["--es", var.grafana_configuration.elasticsearch_data_source]
lucene_query_args = var.grafana_configuration.lucene_query == null ? [] : ["--lucene-query", var.grafana_configuration.elasticsearch_data_source]
lucene_query_args = var.grafana_configuration.lucene_query == null ? [] : ["--lucene-query", var.grafana_configuration.lucene_query]
notification_args = try(length(var.grafana_configuration.notifications), 0) > 0 ? flatten(["--notifications", var.grafana_configuration.notifications]) : []
}

Expand Down

0 comments on commit de5501e

Please sign in to comment.