Datadog APM isn't working

Hello everyone!
I have this file datadog.tf

resource “aws_ecs_service” “datadog_blue” {
name = “datadog-${var.env}”
desired_count = 1
cluster = module.ecs.ecs_cluster_arn
task_definition = aws_ecs_task_definition.datadog.arn
scheduling_strategy = “DAEMON”

deployment_maximum_percent = 100
deployment_minimum_healthy_percent = 0
health_check_grace_period_seconds = 0

enable_ecs_managed_tags = true
}

resource “aws_ecs_service” “datadog_health_cluster_blue” {
name = “datadog-${var.env}”
desired_count = 1
cluster = module.ecs_health_worker.ecs_cluster_arn
task_definition = aws_ecs_task_definition.datadog.arn
scheduling_strategy = “DAEMON”

deployment_maximum_percent = 100
deployment_minimum_healthy_percent = 0
health_check_grace_period_seconds = 0

enable_ecs_managed_tags = true
}

resource “aws_ecs_task_definition” “datadog” {
family = “datadog-${var.env}”
container_definitions = jsonencode([
{
“name” : “datadog-agent”,
“image” : “public.ecr.aws/datadog/agent:latest”,
“cpu” : 100,
“memory” : 512,
“essential” : true,
“mountPoints” : [
{
“containerPath” : “/var/run/docker.sock”,
“sourceVolume” : “docker_sock”,
“readOnly” : null
},
{
“containerPath” : “/host/sys/fs/cgroup”,
“sourceVolume” : “cgroup”,
“readOnly” : null
},
{
“containerPath” : “/host/proc”,
“sourceVolume” : “proc”,
“readOnly” : null
}
],
“environment” : [
{
“name” : “DD_API_KEY”,
“value” : local.op_secrets[“dd_api_key”]
},
{
“name” : “DD_SITE”,
“value” : “datadoghq.com
},
{
“name” : “DD_LOGS_ENABLED”,
“value” : “true”
},
{
“name” : “DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL”,
“value” : “true”
},
{
“name” : “DD_PROCESS_AGENT_ENABLED”,
“value” : “true”
},
{
“name” : “DD_ECS_COLLECT_RESOURCE_TAGS_EC2”,
“value” : “true”
},
{
“name” : “DD_APM_ENABLED”,
“value” : “true”
},
{
“name” : “DD_APM_NON_LOCAL_TRAFFIC”,
“value” : “true”
},
{
“name” : “DD_LOGS_INJECTION”,
“value” : “true”
},
{
“name” : “DD_TRACE_AGENT_PORT”,
“value” : “8126”
}

  ]
  "family" : "datadog-agent-task"
}

])
volume {
name = “docker_sock”
host_path = “/var/run/docker.sock”
}
volume {
name = “proc”
host_path = “/proc/”
}
volume {
name = “cgroup”
host_path = “/sys/fs/cgroup/”
}
}

Every time, when I spin a new environment, everything creates right, I get logs from datadog. Buy my issue is that I don’t get anything on APM

Please help, what do I need to add into my terraform code.
Thank you!