diff --git a/reverse-proxy/task-definition.json b/reverse-proxy/task-definition.json index af4aaf3..9419f2f 100644 --- a/reverse-proxy/task-definition.json +++ b/reverse-proxy/task-definition.json @@ -3,12 +3,12 @@ { "name": "nginx", "image": "", - "memory": "256", - "cpu": "256", + "memory": 256, + "cpu": 256, "essential": true, "portMappings": [ { - "containerPort": "80", + "containerPort": 80, "protocol": "tcp" } ], @@ -19,8 +19,8 @@ { "name": "app", "image": "", - "memory": "256", - "cpu": "256", + "memory": 256, + "cpu": 256, "essential": true } ],