Skip to content

Commit

Permalink
(Chore) Update Readme
Browse files Browse the repository at this point in the history
* Adds the `cpu` and `memory` vars to the example and sets the version
to `1.0`
  • Loading branch information
Stretch96 committed Nov 20, 2018
1 parent cbd86c3 commit a5b4439
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down

0 comments on commit a5b4439

Please sign in to comment.