Releases: DNXLabs/terraform-aws-ecs-app
Releases · DNXLabs/terraform-aws-ecs-app
4.8.0
ENHANCEMENTS
- Adding paths attribute for multiples rules
4.7.0
4.6.2
- Fix subscription filter log group name
4.6.1
- Removes var name and log group from sub-filter
4.6.0
- 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
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)"
}