Skip to content

Commit

Permalink
build: add client aws task definition
Browse files Browse the repository at this point in the history
  • Loading branch information
JoannaThelema committed Feb 6, 2024
1 parent c4114a0 commit cb5c0ec
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .aws/task-definition-client.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"containerDefinitions": [
{
"name": "app",
"image": "806227494574.dkr.ecr.eu-west-1.amazonaws.com/aws-movie-app-express-client:latest",
"cpu": 0,
"portMappings": [
{
"containerPort": 3000,
"hostPort": 3000,
"protocol": "tcp"
}
],
"essential": true,
"environment": [],
"mountPoints": [],
"volumesFrom": []
}
],
"family": "aws-movie-app-express-client__staging",
"executionRoleArn": "arn:aws:iam::806227494574:role/task-execution-role",
"taskRoleArn": "arn:aws:iam::806227494574:role/aws-movie-app-express-client_iam_role",
"networkMode": "awsvpc",
"volumes": [],
"placementConstraints": [],
"requiresCompatibilities": [
"FARGATE"
],
"cpu": "512",
"memory": "1024",
"tags": []
}

0 comments on commit cb5c0ec

Please sign in to comment.