From a5b44399d55830d300828795d1353fe24679846c Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Tue, 20 Nov 2018 12:03:33 +0000 Subject: [PATCH] (Chore) Update Readme * Adds the `cpu` and `memory` vars to the example and sets the version to `1.0` --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d665207..22a2b61 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,15 @@ A Terraform module to create a scheduled task in AWS ECS ``` hcl module "scheduled_task" { source = "github.com:dxw/terraform-aws-ecs-scheduled-task" - version = "0.1" + version = "1.0" name = "my_awesome_task" environment = "staging" container_definitions = "${file(./path/to/container-definitions.json)}" schedule_expression = "0 * * * *" cluster_arn = "my_awesome_cluster" + memory = "512" + cpu = "512" } ```