Skip to content

Releases: DNXLabs/terraform-aws-ecs-app

4.8.0

24 Jul 02:00
Compare
Choose a tag to compare

ENHANCEMENTS

  • Adding paths attribute for multiples rules

4.7.0

22 Jul 00:31
f49b8ec
Compare
Choose a tag to compare

ENHANCEMENTS

  • Adding SG option for fargate type

4.6.2

21 Jul 03:54
Compare
Choose a tag to compare
  • Fix subscription filter log group name

4.6.1

21 Jul 03:48
Compare
Choose a tag to compare
  • Removes var name and log group from sub-filter

4.6.0

21 Jul 03:21
Compare
Choose a tag to compare
  • Adds subscription filter functionality

New variables:

log_subscription_filter_enabled
log_subscription_filter_name
log_subscription_filter_role_arn
log_subscription_filter_log_group_name
log_subscription_filter_filter_pattern
log_subscription_filter_destination_arn

4.5.0

02 Jul 10:37
Compare
Choose a tag to compare

Features:

  • FARGATE launch type deploy.
  • Include new variables:
variable "launch_type" {
  default = "EC2"
  description = "The launch type on which to run your service. The valid values are EC2 and FARGATE. Defaults to EC2."
}

variable "platform_version" {
  default = "LATEST"
  description = "The platform version on which to run your service. Only applicable for launch_type set to FARGATE. Defaults to LATEST."
}

variable "subnets" {
  default = null
  description = "The subnets associated with the task or service. (REQUIRED IF 'LAUCH_TYPE' IS FARGATE)"
}

variable "network_mode" {
  default = null
  description = "The Docker networking mode to use for the containers in the task. The valid values are none, bridge, awsvpc, and host. (REQUIRED IF 'LAUCH_TYPE' IS FARGATE)"
}

4.4.1

17 Jun 03:08
Compare
Choose a tag to compare

BUGFIXES

  • Using listerner to fetch ALB ARN instead of name to avoid assumption that the application uses the same ALB as the cluster

4.4.0

06 Jun 06:28
Compare
Choose a tag to compare

ENHANCEMENTS

  • Support for multiple hostnames on listener rule

4.3.0

21 May 02:34
Compare
Choose a tag to compare

ENHANCEMENTS

  • Exposing ECS service deployment percentages values

FEATURES

  • Allowing a custom task definition to be passed with the task_definition_arn parameter (overrides image)

4.2.0

02 May 07:21
Compare
Choose a tag to compare

BUGFIXES

  • Removing CPU and Memory Alarms for ECS Service as the underlying metrics are the sum of CPU and Memory of all tasks

FEATURES

  • Adding Alarm for when the number of healthy tasks are less than 2 (configurable)