Created
October 21, 2025 11:29
-
-
Save artem-hatchenko/983b57cf4021095f0716d923dccf7b73 to your computer and use it in GitHub Desktop.
eks_fluent_bit_output.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
| additionalOutputs: | | |
| %{for out in var.log_s3_outputs} | |
| [OUTPUT] | |
| Name s3 | |
| Match ${out.tag_prefix}.* | |
| bucket ${out.bucket} | |
| region ${var.aws_region} | |
| total_file_size ${out.total_file_size} | |
| upload_timeout ${out.upload_timeout} | |
| use_put_object On | |
| compression gzip | |
| s3_key_format ${out.bucket_out_prefix}/%Y/%m/%d/%H/$UUID.gz | |
| s3_key_format_tag_delimiters .- | |
| %{endfor} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment