Created
October 21, 2025 11:06
-
-
Save artem-hatchenko/83cc55b598fb911c8c9c2cbced8d0706 to your computer and use it in GitHub Desktop.
eks_fluent_bit_var.tf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "log_s3_outputs" { | |
| type = list(object({ | |
| bucket = string | |
| namespace = string | |
| app = string | |
| tag_prefix = string | |
| bucket_out_prefix = string | |
| total_file_size = optional(string, "250M") | |
| upload_timeout = optional(string, "10m") | |
| shipping_logs_to_os = optional(string, "false") | |
| })) | |
| description = "List of S3 outputs for Fluent Bit" | |
| default = [] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment