Created
May 10, 2019 00:12
-
-
Save Jaff/65ef1e87d0552a17880cbe25991c2ca7 to your computer and use it in GitHub Desktop.
Task description from implementation of https://github.com/jnonino/terraform-aws-ecs-fargate
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
{ | |
"ipcMode": null, | |
"executionRoleArn": "arn:aws:iam::ACCOUNTID:role/atlantis-ecs-task-execution-role", | |
"containerDefinitions": [ | |
{ | |
"dnsSearchDomains": null, | |
"logConfiguration": { | |
"logDriver": "awslogs", | |
"secretOptions": null, | |
"options": { | |
"awslogs-group": "/ecs/service/atlantis", | |
"awslogs-region": "us-east-1", | |
"awslogs-stream-prefix": "ecs" | |
} | |
}, | |
"entryPoint": null, | |
"portMappings": [ | |
{ | |
"hostPort": 4141, | |
"protocol": "tcp", | |
"containerPort": 4141 | |
} | |
], | |
"command": null, | |
"linuxParameters": null, | |
"cpu": 1024, | |
"environment": [], | |
"resourceRequirements": null, | |
"ulimits": null, | |
"dnsServers": null, | |
"mountPoints": [], | |
"workingDirectory": null, | |
"secrets": null, | |
"dockerSecurityOptions": null, | |
"memory": 8192, | |
"memoryReservation": 2048, | |
"volumesFrom": [], | |
"stopTimeout": null, | |
"image": "runatlantis/atlantis:v0.7.2", | |
"startTimeout": null, | |
"dependsOn": null, | |
"disableNetworking": null, | |
"interactive": null, | |
"healthCheck": null, | |
"essential": true, | |
"links": null, | |
"hostname": null, | |
"extraHosts": null, | |
"pseudoTerminal": null, | |
"user": null, | |
"readonlyRootFilesystem": false, | |
"dockerLabels": null, | |
"systemControls": null, | |
"privileged": null, | |
"name": "atlantis" | |
} | |
], | |
"placementConstraints": [], | |
"memory": "8192", | |
"taskRoleArn": "arn:aws:iam::ACCOUNTID:role/atlantis-ecs-task-execution-role", | |
"compatibilities": [ | |
"EC2", | |
"FARGATE" | |
], | |
"taskDefinitionArn": "arn:aws:ecs:us-east-1:ACCOUNTID:task-definition/atlantis-td:1", | |
"family": "atlantis-td", | |
"requiresAttributes": [ | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "com.amazonaws.ecs.capability.docker-remote-api.1.18" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "ecs.capability.task-eni" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "com.amazonaws.ecs.capability.task-iam-role" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "ecs.capability.execution-role-awslogs" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "com.amazonaws.ecs.capability.logging-driver.awslogs" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "com.amazonaws.ecs.capability.docker-remote-api.1.21" | |
}, | |
{ | |
"targetId": null, | |
"targetType": null, | |
"value": null, | |
"name": "com.amazonaws.ecs.capability.docker-remote-api.1.19" | |
} | |
], | |
"pidMode": null, | |
"requiresCompatibilities": [ | |
"FARGATE" | |
], | |
"networkMode": "awsvpc", | |
"cpu": "1024", | |
"revision": 1, | |
"status": "ACTIVE", | |
"proxyConfiguration": null, | |
"volumes": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment