Last active
December 4, 2023 23:14
-
-
Save thamenato/40f08d4aa1123b55270fd6283946807e to your computer and use it in GitHub Desktop.
Terraform ECS log router fluentbit to Grafana Cloud Loki
This file contains 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
# https://registry.terraform.io/modules/terraform-aws-modules/ecs/aws/latest | |
# aws ecs module definitions | |
# ... | |
container_definitions = { | |
"log-router" = { | |
image = "public.ecr.aws/aws-observability/aws-for-fluent-bit:stable" | |
essential = true | |
cpu = "128" | |
memory = "128" | |
memory_reservation = 50 | |
readonly_root_filesystem = false | |
firelens_configuration = { | |
type = "fluentbit" | |
options = { | |
enable-ecs-log-metadata = "true" | |
} | |
} | |
} | |
"my-web-app" = { | |
image = "traefik/whoami:latest" | |
command = ["--verbose"] | |
essential = true | |
cpu = "384" | |
memory = "896" | |
environment = [ | |
{ | |
name = "WHOAMI_PORT_NUMBER" | |
value = "80" | |
}, | |
{ | |
name = "WHOAMI_NAME" | |
value = "my-web-app" | |
} | |
] | |
port_mappings = [ | |
{ | |
name = "http" | |
containerPort = 80 | |
protocol = "tcp" | |
}, | |
] | |
dependencies = [{ | |
containerName = "log-router" | |
condition = "START" | |
}] | |
log_configuration = { | |
logDriver = "awsfirelens" | |
options = { | |
Name = "loki" | |
Host = "logs-prod-006.grafana.net" | |
port = "443" | |
"tls" = "on" | |
"tls.verify" = "on" | |
labels = "job=firelens,enviroment=${local.environment}" | |
label_keys = "$container_name,$ecs_task_definition,$source,$ecs_cluster" | |
remove_keys = "$container_id,$ecs_task_arn" | |
line_format = "key_value" | |
} | |
secretOptions = [ | |
{ | |
name = "http_user" | |
valueFrom = "arn:aws:ssm:us-west-2:12345678910:parameter/loki/http_user" | |
}, | |
{ | |
name = "http_passwd" | |
valueFrom = "arn:aws:ssm:us-west-2:12345678910:parameter/loki/http_passwd" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment