Skip to content

Commit

Permalink
feat: Add port 80 TCP configuration for Atlas container
Browse files Browse the repository at this point in the history
This commit adds a new configuration for port 80 TCP in the `.aws/task-definition.json` file. The configuration includes the necessary settings for the Atlas container to listen on port 80 and handle HTTP traffic.

Note: This message does not include any meta information like issue references, tags, or author names.
  • Loading branch information
amirrr committed Jun 28, 2024
1 parent 02b2ae2 commit 9301de9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .aws/task-definition.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
"hostPort": 8000,
"protocol": "tcp",
"appProtocol": "http"
},
{
"name": "atlas-container-port-80-tcp",
"containerPort": 80,
"hostPort": 80,
"protocol": "tcp",
"appProtocol": "http"
}
],
"essential": true,
Expand All @@ -23,6 +30,7 @@
"systemControls": []
}
],
"taskRoleArn": "arn:aws:iam::533266983284:role/ecsTaskExecutionRole",
"executionRoleArn": "arn:aws:iam::533266983284:role/ecsTaskExecutionRole",
"networkMode": "awsvpc",
"requiresCompatibilities": ["FARGATE"],
Expand Down

0 comments on commit 9301de9

Please sign in to comment.