Releases: cloudposse/terraform-aws-ecs-alb-service-task
Releases · cloudposse/terraform-aws-ecs-alb-service-task
0.10.0 Fix name for `aws_security_group` for `ecs_service`
what
- Fix name for
"aws_security_group" "ecs_service"
why
- Wrong label was used for
name
in"aws_security_group" "ecs_service"
. Since the default label was used without any additional attributes to disambiguate the names, when deploying the cluster, there were errors that a Security Group with the same name already existed. For the Security Group for the ECS service, should use theservice_label
0.9.0 Add task definition family and revision to module outputs
what
- Add task definition family and revision to module outputs
why
- The outputs can be used in other modules
0.8.0 Make volumes configurable
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)
* Expose aws_ecs_service health_check_grace_period_seconds * Add type to health_check_grace_period_seconds
0.6.3
0.6.2 Enable resource tagging for all resources
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
0.6.0: output ecs security group (#12)
* output ecs security group want to use this in other modules * updated readme * updates for standards removed abbreviation and added "the"
0.5.0
Regenerate README.md
what
- Regenerate
README.md
why
- Previous version of build-harness has some typos