feat: add terraform infra as code for AWS fargate (#1987)

This commit is contained in:
dan sweeting
2021-02-23 17:10:33 +00:00
committed by GitHub
parent 347f49b2d4
commit d341ef72aa
10 changed files with 287 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[
{
"name": "${name}-task",
"image": "ghcr.io/jef/streetmerchant:latest",
"cpu": ${cpu},
"memory": ${memory},
"essential": true,
"environment": ${environment},
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "${awslogs-group}",
"awslogs-region": "${region}",
"awslogs-stream-prefix": "ecs"
}
}
}
]