File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -231,6 +231,9 @@ locals {
231
231
time = {
232
232
servers = var.talos_time_servers
233
233
}
234
+ logging = {
235
+ destinations = var.talos_service_log_destinations
236
+ }
234
237
}
235
238
cluster = {
236
239
allowSchedulingOnControlPlanes = local.allow_scheduling_on_control_plane
@@ -372,6 +375,9 @@ locals {
372
375
time = {
373
376
servers = var.talos_time_servers
374
377
}
378
+ logging = {
379
+ destinations = var.talos_service_log_destinations
380
+ }
375
381
}
376
382
cluster = {
377
383
network = {
@@ -476,6 +482,9 @@ locals {
476
482
time = {
477
483
servers = var.talos_time_servers
478
484
}
485
+ logging = {
486
+ destinations = var.talos_service_log_destinations
487
+ }
479
488
}
480
489
cluster = {
481
490
network = {
Original file line number Diff line number Diff line change @@ -657,6 +657,15 @@ variable "talos_registries" {
657
657
EOF
658
658
}
659
659
660
+ variable "talos_service_log_destinations" {
661
+ description = " List of objects defining remote destinations for Talos service logs."
662
+ type = list (object ({
663
+ endpoint = string
664
+ format = optional (string , " json_lines" )
665
+ extraTags = optional (map (string ), {})
666
+ }))
667
+ default = []
668
+ }
660
669
661
670
# Talos Backup
662
671
variable "talos_backup_version" {
You can’t perform that action at this time.
0 commit comments