Skip to content

Commit fe800d8

Browse files
committed
chore: Align global_tolerations variable + bump grafana alloy module version
1 parent 70698eb commit fe800d8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ module "grafana_alloy_cluster" {
150150
count = var.grafana_alloy.cluster.enabled ? 1 : 0
151151

152152
source = "cookielab/grafana-alloy/kubernetes//modules/cluster"
153-
version = "v0.0.6"
153+
version = "v1.0.1"
154154
kubernetes_cluster_name = var.cluster_name
155155
chart_version = "0.12.5"
156156
kubernetes_namespace = local.namespace

variables.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,11 @@ variable "grafana_alloy" {
316316
description = "grafana alloy configuration"
317317
type = object({
318318
global_tolerations = optional(list(object({
319-
key = optional(string, null)
320-
operator = optional(string, null)
321-
value = optional(string, null)
322-
effect = optional(string, null)
319+
key = optional(string, null)
320+
operator = optional(string, null)
321+
value = optional(string, null)
322+
effect = optional(string, null)
323+
tolerationSeconds = optional(number, null)
323324
})), [])
324325
image = optional(object({
325326
repository = optional(string, "grafana/alloy")

0 commit comments

Comments
 (0)