Skip to content

Instantly share code, notes, and snippets.

@caevyn
Last active June 28, 2017 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save caevyn/3c95cdd6b9cd0c197cba to your computer and use it in GitHub Desktop.
Save caevyn/3c95cdd6b9cd0c197cba to your computer and use it in GitHub Desktop.
ecs definition
{
"taskDefinitionArn": "arn:aws:ecs:us-west-2:<scc number>:task-definition/build-blog:3",
"revision": 3,
"containerDefinitions": [
{
"volumesFrom": [],
"portMappings": [],
"command": [],
"environment": [
{
"name": "AWS_DEFAULT_REGION",
"value": "us-west-2"
},
{
"name": "AWS_SECRET_ACCESS_KEY",
"value": "<<value>>"
},
{
"name": "AWS_ACCESS_KEY_ID",
"value": "<<value>>"
}
],
"essential": true,
"entryPoint": [],
"links": [],
"mountPoints": [],
"memory": 500,
"name": "build-blog",
"cpu": 1024,
"image": "caevyn/obelisk-builder"
}
],
"volumes": [],
"family": "build-blog"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment