{
  "containerDefinitions": [
    {
      "name": "datadog-agent",
      "image": "public.ecr.aws/datadog/agent:latest",
      "cpu": 512,
      "memory": 512,
      "essential": true,
      "mountPoints": [
        {
          "containerPath": "\\\\.\\pipe\\docker_engine",
          "sourceVolume": "docker_sock",
          "readOnly": null
        }
      ],
      "environment": [
        {
          "name": "DD_API_KEY",
          "value": "<YOUR_DATADOG_API_KEY>"
        },
        {
          "name": "DD_SITE",
          "value": "datadoghq.com"
        }
      ]
    }
  ],
  "volumes": [
    {
      "host": {
        "sourcePath": "\\\\.\\pipe\\docker_engine"
      },
      "name": "docker_sock"
    }
  ],
  "family": "datadog-agent-task"
}
