Skip to content

v0.21.2

Choose a tag to compare

@cloudpossebot cloudpossebot released this 10 Feb 08:53
0a3e609

🤖 Automatic Updates

Update Terraform cloudposse/ecs-web-app/aws to v0.54.0 @renovate (#33)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-web-app/aws (source) terraform minor 0.53.1 -> 0.54.0

Release Notes

cloudposse/terraform-aws-ecs-web-app

v0.54.0

Compare Source

fix: make required outputs sensitive @​syphernl (#​113) ##### what * Marks the outputs sensitive to be compatible with TF 0.14 ##### why * Otherwise TF 0.14 would give an `Error: Output refers to sensitive values` when using this module ##### references * https://www.terraform.io/upgrade-guides/0-14.html#sensitive-values-in-plan-output

v0.53.7

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/ecs-cloudwatch-sns-alarms/aws to v0.12.1 @​renovate (#​118)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-cloudwatch-sns-alarms/aws (source) terraform patch 0.12.0 -> 0.12.1

Release Notes
cloudposse/terraform-aws-ecs-cloudwatch-sns-alarms ##### [`v0.12.1`](https://togithub.com/cloudposse/terraform-aws-ecs-cloudwatch-sns-alarms/releases/0.12.1)

Compare Source

🤖 Automatic Updates
Update Terraform cloudposse/label/null to v0.24.1 @​&#​8203;renovate (#&#​8203;26)

This PR contains the following updates:

Package Type Update Change
cloudposse/label/null (source) terraform minor 0.22.1 -> 0.24.1

Release Notes
cloudposse/terraform-null-label ##### [`v0.24.1`](https://togithub.com/cloudposse/terraform-null-label/releases/0.24.1)

Compare Source

Allow control of letter case of outputs @​&#​8203;&#&#​8203;8203;SweetOps (#&#&#​8203;8203;107)

You now have control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

Include updates to exports/context.tf @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;122 and #&#&#​8203;8203;123) ##### what - Include updates to `exports/context.tf` - Update README with features and compatibilty - Add validation for `id_length_limit` ##### why - The `exports/context.tf` is what gets distributed and needs to be in sync - Replace outdated information - Was not validated earlier because validators are not supported in TF 0.12 but now we are dropping support for TF 0.12 and so we can add validators
Restore backward compatibility with v0.22.1 and earlier @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;121) ##### what - Restore backward compatibility with v0.22.1 and earlier - Allow setting of `label_key_case` and `label_value_case` by vars, not just by context attributes. ##### why - Allow interoperability of old and new modules - Normally, root modules make settings via individual variables, not by setting an entire context block.

Incorporates and closes #&#&#​8203;8203;120

##### [`v0.24.0`](https://togithub.com/cloudposse/terraform-null-label/releases/0.24.0)

Compare Source

Restore backward compatibility with v0.22.1 and earlier @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;121) ##### what - Restore backward compatibility with v0.22.1 and earlier - Allow setting of `label_key_case` and `label_value_case` by vars, not just by context attributes. ##### why - Allow interoperability of old and new modules - Normally, root modules make settings via individual variables, not by setting an entire context block.

Incorporates and closes #&#&#​8203;8203;120

Allow control of letter case of outputs @​&#​8203;&#&#​8203;8203;SweetOps (#&#&#​8203;8203;107)

You now have control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

##### Known issues - `exports/context.tf` still not backwards compatible - Validation for `id_length` not included in `exports/context.tf` ##### [`v0.23.0`](https://togithub.com/cloudposse/terraform-null-label/releases/0.23.0)

Compare Source

Known issues
  • Does not interoperate with earlier versions of null-label. The canonical context = module.this.context fails if module.this.context is an older version
  • context.tf does not incorporate var.label_key_case and var.label_value_case into the module.this object, preventing those variables from taking effect in the root module's module.this.
feat: add support for setting letter case of context tags @​&#​8203;&#&#​8203;8203;SweetOps (#&#&#​8203;8203;107)

With this release, you gain control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

v0.53.6

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/ecs-container-definition/aws to v0.49.2 @​renovate (#​117)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-container-definition/aws (source) terraform minor 0.47.0 -> 0.49.2

Release Notes
cloudposse/terraform-aws-ecs-container-definition ##### [`v0.49.2`](https://togithub.com/cloudposse/terraform-aws-ecs-container-definition/releases/0.49.2)

Compare Source

🐛 Bug Fixes
Fix typo in key of container definition @​&#​8203;clifford-sanders (#&#​8203;121) ##### what A key in the container definition had a typo. `preudoTerminal` instead of `pseudoTerminal` ##### why Because of this typo it was impossible to enable the pseudoTerminal (tty) ##### references n/a
##### [`v0.49.1`](https://togithub.com/cloudposse/terraform-aws-ecs-container-definition/releases/0.49.1)

Compare Source

🚀 Enhancements
fix: mark outputs as sensitive @​&#​8203;syphernl (#&#​8203;118) ##### what * Marks the outputs as sensitive * Update workflows etc. missed by #&#​8203;119 ##### why * Otherwise TF 0.14 would give an `Error: Output refers to sensitive values` when using these outputs to feed into other modules (e.g. `terraform-aws-ecs-alb-service-task`) * Keep modules in sync per request of Cloud Posse ##### references * https://www.terraform.io/upgrade-guides/0-14.html#sensitive-values-in-plan-output
##### [`v0.49.0`](https://togithub.com/cloudposse/terraform-aws-ecs-container-definition/releases/0.49.0)

Compare Source

context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​&#​8203;maximmi (#&#​8203;119) ##### what - update context.tf to v0.24.1 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels, back compatibility with context v0.22.0 and below - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant
##### [`v0.48.1`](https://togithub.com/cloudposse/terraform-aws-ecs-container-definition/releases/0.48.1)

Compare Source

🤖 Automatic Updates
Update README.md and docs @​&#​8203;cloudpossebot (#&#​8203;117) ##### what This is an auto-generated PR that updates the README.md and docs ##### why To have most recent changes of README.md and doc from origin templates
##### [`v0.48.0`](https://togithub.com/cloudposse/terraform-aws-ecs-container-definition/releases/0.48.0)

Compare Source

Terraform 0.14 upgrade @​&#​8203;maximmi (#&#​8203;112) ##### what - Upgrade to support Terraform 0.14 and bring up to current Cloud Posse standard ##### why - Support Terraform 0.14

v0.53.5

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/alb-ingress/aws to v0.20.0 @​renovate (#​116)

This PR contains the following updates:

Package Type Update Change
cloudposse/alb-ingress/aws (source) terraform minor 0.18.0 -> 0.20.0

Release Notes
cloudposse/terraform-aws-alb-ingress ##### [`v0.20.0`](https://togithub.com/cloudposse/terraform-aws-alb-ingress/releases/0.20.0)

Compare Source

context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​&#​8203;maximmi (#&#​8203;48) ##### what - update context.tf to v0.24.1 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels, back compatibility with context v0.22.0 and below - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant
##### [`v0.19.1`](https://togithub.com/cloudposse/terraform-aws-alb-ingress/releases/0.19.1)

Compare Source

🤖 Automatic Updates
Update context.tf @​&#​8203;cloudpossebot (#&#​8203;49) ##### what This is an auto-generated PR that updates the `context.tf` file to the latest version from `cloudposse/terraform-null-label` ##### why To support all the features of the `context` interface.
##### [`v0.19.0`](https://togithub.com/cloudposse/terraform-aws-alb-ingress/releases/0.19.0)

Compare Source

minimum required Terraform version bumped to 0.13.0, context.tf updated, readme updated @​&#​8203;maximmi (#&#​8203;47) ##### what - update context.tf to v0.23.0 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant

v0.53.4

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/ecs-cloudwatch-sns-alarms/aws to v0.12.0 @​renovate (#​115)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-cloudwatch-sns-alarms/aws (source) terraform minor 0.11.1 -> 0.12.0

Release Notes
cloudposse/terraform-aws-ecs-cloudwatch-sns-alarms ##### [`v0.12.0`](https://togithub.com/cloudposse/terraform-aws-ecs-cloudwatch-sns-alarms/releases/0.12.0)

Compare Source

context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​&#​8203;maximmi (#&#​8203;25) ##### what - update context.tf to v0.24.1 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels, back compatibility with context v0.22.0 and below - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant

v0.53.3

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/ecs-alb-service-task/aws to v0.47.0 @​renovate (#​114)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-alb-service-task/aws (source) terraform minor 0.44.1 -> 0.47.0

Release Notes
cloudposse/terraform-aws-ecs-alb-service-task ##### [`v0.47.0`](https://togithub.com/cloudposse/terraform-aws-ecs-alb-service-task/releases/0.47.0)

Compare Source

context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​&#​8203;maximmi (#&#​8203;99) ##### what - update context.tf to v0.24.1 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels, back compatibility with context v0.22.0 and below - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant
##### [`v0.46.1`](https://togithub.com/cloudposse/terraform-aws-ecs-alb-service-task/releases/0.46.1)

Compare Source

🤖 Automatic Updates
Update context.tf @​&#​8203;cloudpossebot (#&#​8203;100) ##### what This is an auto-generated PR that updates the `context.tf` file to the latest version from `cloudposse/terraform-null-label` ##### why To support all the features of the `context` interface.
##### [`v0.46.0`](https://togithub.com/cloudposse/terraform-aws-ecs-alb-service-task/releases/0.46.0)

Compare Source

Expose ARN for service so we don't have to manually construct it @​&#​8203;X82Softworks (#&#​8203;96) ##### what * Expose ARN for service so we don't have to manually construct it ##### why * Ease of use and preventing user error
##### [`v0.45.1`](https://togithub.com/cloudposse/terraform-aws-ecs-alb-service-task/releases/0.45.1)

Compare Source

🤖 Automatic Updates
Update Terraform cloudposse/label/null to v0.24.1 @​&#​8203;renovate (#&#​8203;95)

This PR contains the following updates:

Package Type Update Change
cloudposse/label/null (source) terraform minor 0.22.1 -> 0.24.1

Release Notes
cloudposse/terraform-null-label ##### [`v0.24.1`](https://togithub.com/cloudposse/terraform-null-label/releases/0.24.1)

Compare Source

Allow control of letter case of outputs @​&#​8203;&#&#​8203;8203;SweetOps (#&#&#​8203;8203;107)

You now have control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

Include updates to exports/context.tf @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;122 and #&#&#​8203;8203;123) ##### what - Include updates to `exports/context.tf` - Update README with features and compatibilty - Add validation for `id_length_limit` ##### why - The `exports/context.tf` is what gets distributed and needs to be in sync - Replace outdated information - Was not validated earlier because validators are not supported in TF 0.12 but now we are dropping support for TF 0.12 and so we can add validators
Restore backward compatibility with v0.22.1 and earlier @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;121) ##### what - Restore backward compatibility with v0.22.1 and earlier - Allow setting of `label_key_case` and `label_value_case` by vars, not just by context attributes. ##### why - Allow interoperability of old and new modules - Normally, root modules make settings via individual variables, not by setting an entire context block.

Incorporates and closes #&#&#​8203;8203;120

##### [`v0.24.0`](https://togithub.com/cloudposse/terraform-null-label/releases/0.24.0)

Compare Source

Restore backward compatibility with v0.22.1 and earlier @​&#​8203;&#&#​8203;8203;Nuru (#&#&#​8203;8203;121) ##### what - Restore backward compatibility with v0.22.1 and earlier - Allow setting of `label_key_case` and `label_value_case` by vars, not just by context attributes. ##### why - Allow interoperability of old and new modules - Normally, root modules make settings via individual variables, not by setting an entire context block.

Incorporates and closes #&#&#​8203;8203;120

Allow control of letter case of outputs @​&#​8203;&#&#​8203;8203;SweetOps (#&#&#​8203;8203;107)

You now have control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

##### [`v0.23.0`](https://togithub.com/cloudposse/terraform-null-label/releases/0.23.0)

Compare Source

With this release, you gain control over the letter case of generated tag names and supplied labels, which means you also have control over the letter case of the ultimate id.

Labels are the elements you can include in label_order, namely namespace, environment, stage, name, and attributes. For every non-empty label, a corresponding tag name is generated. For namespace, environment, stage, the output is the formatted, normalized input. (By "normalized" we mean that it goes through regex_replace_chars.), For attributes, which is a list, each element is normalized, duplicates are removed, and the resulting list is converted to a string by joining the elements with the delimiter (defaults to hyphen). For name, which is special, the output is the same as id, which is the joining of the labels in the order specified by label_order and separated by delimiter.

  • You can set label_key_case to one of upper, lower, or title, which will result in generated tag names in the corresponding case: NAME, name, or Name. For backwards compatibility, title is the default
  • You can set label_value_case to one of upper, lower, title, or none, which will result in output label values in the corresponding case (with none meaning no case conversion of any kind will be done, though the labels will still be subject to regex_replace_chars). The case converted labels will show up not just in the module output of the labels themselves, but also in the tag values and in the id string.

You can look at the test cases in examples/complete and the expected results in test/src/examples_complete_test.go to see examples of how this is supposed to work.

One interesting example is that you can create ids in Pascal case by setting label_value_case = "title" and delimiter = "".

##### [`v0.45.0`](https://togithub.com/cloudposse/terraform-aws-ecs-alb-service-task/releases/0.45.0)

Compare Source

minimum required Terraform version bumped to 0.13.0, context.tf updated, readme updated @​&#​8203;maximmi (#&#​8203;98) ##### what - update context.tf to v0.23.0 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant

v0.53.2

Compare Source

🤖 Automatic Updates
chore(deps): update terraform cloudposse/ecr/aws to v0.32.2 @​renovate (#​112)

This PR contains the following updates:

Package Type Update Change
cloudposse/ecr/aws (source) terraform patch 0.32.1 -> 0.32.2

Release Notes
cloudposse/terraform-aws-ecr ##### [`v0.32.2`](https://togithub.com/cloudposse/terraform-aws-ecr/releases/0.32.2)

Compare Source

🤖 Automatic Updates
context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​&#​8203;maximmi (#&#​8203;78) ##### what - update context.tf to v0.24.1 - minimum required Terraform version bumped to 0.13.0 - readme updated, Bridgecrew compliance badges added ##### why - It allows for setting the letter case of tag names and labels, back compatibility with context v0.22.0 and below - we have dropped support for Terraform 0.12 - To be able see and fix the recommendations from Bridgecrew so we can position our modules as standards compliant