Skip to content

Commit

Permalink
Fix spacing in README
Browse files Browse the repository at this point in the history
  • Loading branch information
piradeepk committed Apr 26, 2019
1 parent b252c55 commit 73b1aed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/@aws-cdk/aws-ecs/README.md
Expand Up @@ -35,12 +35,12 @@ const ecsService = new ecs.LoadBalancedEc2Service(this, 'Service', {

// Instantiate an Amazon EC2 Task to run at a scheduled interval
const ecsScheduledTask = new ScheduledEc2Task(this, 'ScheduledTask', {
cluster,
image: ecs.ContainerImage.fromRegistry("amazon/amazon-ecs-sample"),
scheduleExpression: 'rate(1 minute)',
environment: [{ name: 'TRIGGER', value: 'CloudWatch Events' }],
memoryLimitMiB: 256
});
cluster,
image: ecs.ContainerImage.fromRegistry("amazon/amazon-ecs-sample"),
scheduleExpression: 'rate(1 minute)',
environment: [{ name: 'TRIGGER', value: 'CloudWatch Events' }],
memoryLimitMiB: 256
});
```

## AWS Fargate vs Amazon ECS
Expand Down

0 comments on commit 73b1aed

Please sign in to comment.