Skip to content

Releases: cloudposse/terraform-aws-ecs-alb-service-task

0.8.0 Make volumes configurable

28 Jan 15:19
Compare
Choose a tag to compare

what

  • Make volumes configurable

why

Allows to add volume definitions to task like this

module "alb_service_task" {
  source                    = "../terraform-aws-ecs-alb-service-task"
  volumes = [
    {
      name = "${module.label_base.id}-data"
      docker_volume_configuration = [
        {
          scope         = "shared"
          autoprovision = true
        },
      ]
    },
  ]
}

0.7.0: Expose aws_ecs_service health_check_grace_period_seconds (#19)

21 Jan 10:32
Compare
Choose a tag to compare
* Expose aws_ecs_service health_check_grace_period_seconds

* Add type to health_check_grace_period_seconds

0.6.3

11 Jan 10:56
Compare
Choose a tag to compare
add output for task_role_arn (#18)

* add output for task_role_arn

* Update readme

0.6.2 Enable resource tagging for all resources

06 Dec 15:09
Compare
Choose a tag to compare

what

  • Enable resource tagging for all resources

why

  • Resource tags are uniform across all resources provisioned by this module
  • More accurate observability when creating a resource group for said resources

0.6.1

05 Oct 02:06
23f7a7a
Compare
Choose a tag to compare

what

  • Remove unused vars
  • Update README with examples and descriptions
  • Add usage example

why

  • The vars were declared but never used and they are unnecessary
  • Add example for specifying container definition

0.6.0: output ecs security group (#12)

24 Sep 01:40
Compare
Choose a tag to compare
* output ecs security group

want to use this in other modules

* updated readme

* updates for standards

removed abbreviation and added "the"

0.5.0: Add lifecycle rule to ignore task-definition changes and regen readme…

07 Aug 16:28
c902ab1
Compare
Choose a tag to compare

Regenerate README.md

27 Jul 14:07
40a36ec
Compare
Choose a tag to compare

what

  • Regenerate README.md

why

  • Previous version of build-harness has some typos

0.4.0: Remove healthcheck parameter from resource which does not support it

20 Jul 19:24
5202765
Compare
Choose a tag to compare
remove healthcheck parameter and normalize label names (#8)

0.3.0: Add IAM Role for ECS Task (#7)

17 Jul 22:58
22a1dca
Compare
Choose a tag to compare
* add task role and outputs for task and service role

* refactor naming

* add healthcheck parameter

* update readme