ECS Task Definition missing closing brace
buzzsurfr opened this issue · 0 comments
buzzsurfr commented
The Task Definition in doc-source/xray-daemon-ecs.md
is missing a closing brace between Lines 111 and 112.
aws-xray-developer-guide/doc-source/xray-daemon-ecs.md
Lines 77 to 112 in 432d45d
**Example VPC task definition** | |
``` | |
{ | |
"family": "scorekeep", | |
"networkMode":"awsvpc", | |
"containerDefinitions": [ | |
{ | |
"name": "xray-daemon", | |
"image": "123456789012.dkr.ecr.us-east-2.amazonaws.com/xray-daemon", | |
"cpu": 32, | |
"memoryReservation": 256, | |
"portMappings" : [ | |
{ | |
"containerPort": 2000, | |
"protocol": "udp" | |
} | |
] | |
} | |
{ | |
"name": "scorekeep-api", | |
"image": "123456789012.dkr.ecr.us-east-2.amazonaws.com/scorekeep-api", | |
"cpu": 192, | |
"memoryReservation": 512, | |
"environment": [ | |
{ "name" : "AWS_REGION", "value" : "us-east-2" }, | |
{ "name" : "NOTIFICATION_TOPIC", "value" : "arn:aws:sns:us-east-2:123456789012:scorekeep-notifications" } | |
], | |
"portMappings" : [ | |
{ | |
"containerPort": 5000 | |
} | |
] | |
} | |
] | |
``` |