Skip to content

Commit 9ad257e

Browse files
authored
docs: Correct resourceRequirements in Fargate example (#6)
1 parent beca68c commit 9ad257e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/fargate/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ module "batch" {
129129
platformVersion = "LATEST"
130130
},
131131
resourceRequirements = [
132-
{ type = "VCPU", value = 1 },
133-
{ type = "MEMORY", value = 1024 }
132+
{ type = "VCPU", value = "1" },
133+
{ type = "MEMORY", value = "2048" }
134134
],
135135
executionRoleArn = aws_iam_role.ecs_task_execution_role.arn
136136
logConfiguration = {

0 commit comments

Comments
 (0)