Skip to content

Releases: transcend-io/terraform-aws-fargate-container

v1.6.2

10 Nov 21:33
cdcf9b5
Compare
Choose a tag to compare

Adds default linux_parameters value

v1.6.1

09 Nov 20:33
d7e0d81
Compare
Choose a tag to compare

Removes linux_parameters options not supported for Fargate instances

v1.6.0

06 Nov 20:59
3ffcb68
Compare
Choose a tag to compare

Added support for linux_parameters

v1.5.1

23 Oct 15:40
fe261fe
Compare
Choose a tag to compare

Fixes inconsistent type errors, such as:

Error: Inconsistent conditional result types

  on main.tf line 95, in module "definition":
  95:   log_configuration = var.use_cloudwatch_logs ? {
  96:     logDriver = "awslogs"
  97:     options = {
  98:       "awslogs-region"        = var.aws_region
  99:       "awslogs-group"         = aws_cloudwatch_log_group.log_group[0].name
 100:       "awslogs-stream-prefix" = "ecs--${var.name}"
 101:     }
 102:     secretOptions = []
 103:     } : merge(var.log_configuration, {
 104:       secretOptions = concat(var.extra_log_secret_options, [
 105:         for name, outputs in aws_ssm_parameter.secret_log_options :
 106:         {
 107:           name      = name
 108:           valueFrom = outputs.arn
 109:         }
 110:       ])
 111:   })
    |----------------
    | aws_cloudwatch_log_group.log_group[0].name is "vault-agent-log-group"
    | aws_ssm_parameter.secret_log_options is object with no attributes
    | var.aws_region is "eu-west-1"
    | var.extra_log_secret_options is empty list of object
    | var.log_configuration is null
    | var.name is "vault-agent"
    | var.use_cloudwatch_logs is true

v1.5.0

23 Oct 15:20
940efa6
Compare
Choose a tag to compare

Upgrades for terraform 0.13

v1.4.0

08 Oct 20:51
19cd49b
Compare
Choose a tag to compare

Add support for overriding lots of ECS options, including volume mounting, healthcheck dependencies, and CMD overrides.

v1.3.2

09 Aug 02:38
d33f320
Compare
Choose a tag to compare

Allow adding extra log secrets from existing SSM Params

v1.3.1

09 Aug 01:51
49b1425
Compare
Choose a tag to compare

Allow adding extra log secrets from existing SSM Params

v1.3.0

05 Aug 20:08
42df737
Compare
Choose a tag to compare

Allow specifying memory soft limits

v1.2.0

01 Jul 14:39
d78870a
Compare
Choose a tag to compare

Removed the dummy resource, as it caused some problems during terraform apply commands