Skip to content

Commit

Permalink
fix(eks/loki): Remove Unnecessary compact (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
milldr authored Jul 1, 2024
1 parent 23f29cc commit 2c7ac72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/eks/loki/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ module "loki" {
# For new installations, schema config doesnt change. See the following:
# https://grafana.com/docs/loki/latest/operations/storage/schema/#new-loki-installs
schemaConfig = {
configs = compact(concat(var.default_schema_config, var.additional_schema_config))
configs = concat(var.default_schema_config, var.additional_schema_config)
}
storage = {
bucketNames = {
Expand Down

0 comments on commit 2c7ac72

Please sign in to comment.