Terraform Aws Ecs Atlantis Versions Save

Terraform module for deploying Atlantis as an ECS Task

0.24.1

2 years ago

πŸ€– Automatic Updates

Update context.tf @cloudpossebot (#39)

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.

0.24.0

3 years ago
Upgrade ecs-web-app module and support using private repository @maeghan-porter (#38)

what

  • Upgrade the ecs-web-app module version to the latest and support the usage of private repositories by allowing the user to pass in private repository credentials for ecs to use.

why

  • Private image repositories are an option to use and so this module should provider the ability to use them by allowing setting of the credentials on the task definition.

0.23.0

3 years ago
Add use_alb_security_group flag @maeghan-porter (#37)

what

  • Adding the use_alb_security_group flag to pass along to the ecs-web-app module so that a security group ingress rule will be added to the service for the ALB.

why

  • The service needs to allow access from the ALB else the connectivity from ALB to atlantis will not work. This functionality was lost for me in an upgrade from version 0.14.0 of this module to the latest version (0.22.0).

0.22.0

3 years ago
Make vars sensitive @kevcube (#36)

https://github.com/cloudposse/terraform-aws-ecs-web-app/pull/113 <-- That PR broke this module.

what

  • mark sensitive outputs sensitive

why

  • current module doesn't work with tf 0.14
Error: Output refers to sensitive values

  on outputs.tf line 46:
  46: output "container_definition_json" {

Expressions used in outputs can only refer to sensitive values if the
sensitive attribute is true.


Error: Output refers to sensitive values

  on outputs.tf line 51:
  51: output "container_definition_json_map" {

Expressions used in outputs can only refer to sensitive values if the
sensitive attribute is true.

0.21.2

3 years ago

πŸ€– 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

0.21.1

3 years ago

πŸ€– Automatic Updates

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

This PR contains the following updates:

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

Release Notes

cloudposse/terraform-aws-ecs-web-app

v0.53.1

Compare Source

πŸ€– Automatic Updates
Update context.tf @​cloudpossebot (#​111) ##### 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.

0.21.0

3 years ago

Restore correct ordering of attributes in IDs.

Support Null Label 0.24.1 @Nuru (#31)

what

  • Update context.tf and dependent modules to be compatible with Null Label v0.24.1
  • Drop support for Terraform 0.12

why

  • New features, including restoring proper, consistent ordering of attributes in chained IDs
  • Terraform 0.12 is missing important features, such as variable validation, and current version if 0.14 with 0.15 coming soon

Supersedes and replaces #28 Supersedes and replaces #29

0.20.0

3 years ago

Note that this version is affected by a bug that puts attributes provided by the caller in the wrong place in some identifiers. If you are not providing attributes, it is not an issue, but if you are, please upgrade instead to v0.21.0 which has the correct order. Otherwise you may find resources being unnecessarily deleted.

Pin GitHub provider to 3.0.0 @Nuru (#30)

what

  • Restore TF 0.12 support
  • Remove github_anonymous
  • Use modules pinned to GitHub provider 3.0.0

why

  • Update/fix TF 0.12 compatible module before dropping support for TF 0.12
  • GitHub provider dropped support for github_anonymous
  • GitHub provider has breaking changes with every release, 3.0.0 seemed the best balance of stable, bug-free, and compatible with our codebase

0.19.0

3 years ago
minimum required Terraform version bumped to 0.13.0, context.tf updated, readme updated @maximmi (#27)

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

0.18.1

3 years ago

πŸ€– Automatic Updates

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

This PR contains the following updates:

Package Type Update Change
cloudposse/ecs-web-app/aws (source) terraform patch 0.48.1 -> 0.48.2

Release Notes

cloudposse/terraform-aws-ecs-web-app

v0.48.2

Compare Source

πŸ€– Automatic Updates
chore(deps): update terraform cloudposse/alb-ingress/aws to v0.17.0 @​renovate (#​91)

This PR contains the following updates:

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

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

Compare Source

fix: ensure the module does not instantiate an empty condition block @​​8203;jhosteny (#​8203;43)

Guard the creation of the condition block on the length of the optional listener_http_header_conditions.

Fixes #&#​8203;42

what
  • Make the condition blocks dynamic, requiring a non-empty list for the http headers
why
  • Without this, the module attempts to create an empty condition, and fails
references

Fixes #&#​8203;42