v0.21.2
🤖 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
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-outputv0.53.7
🤖 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)🤖 Automatic Updates
Update Terraform cloudposse/label/null to v0.24.1 @​renovate (#​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)Allow control of letter case of outputs @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
Include updates to exports/context.tf @​&#​8203;Nuru (#&#​8203;122 and #&#​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 validatorsRestore backward compatibility with v0.22.1 and earlier @​&#​8203;Nuru (#&#​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;120
Restore backward compatibility with v0.22.1 and earlier @​&#​8203;Nuru (#&#​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;120
Allow control of letter case of outputs @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
Known issues
- Does not interoperate with earlier versions of
null-label
. The canonicalcontext = module.this.context
fails ifmodule.this.context
is an older version context.tf
does not incorporatevar.label_key_case
andvar.label_value_case
into themodule.this
object, preventing those variables from taking effect in the root module'smodule.this
.
feat: add support for setting letter case of context tags @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
v0.53.6
🤖 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)🐛 Bug Fixes
Fix typo in key of container definition @​clifford-sanders (#​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🚀 Enhancements
fix: mark outputs as sensitive @​syphernl (#​118)
##### what * Marks the outputs as sensitive * Update workflows etc. missed by #​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-outputcontext.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​maximmi (#​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🤖 Automatic Updates
Update README.md and docs @​cloudpossebot (#​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 templatesTerraform 0.14 upgrade @​maximmi (#​112)
##### what - Upgrade to support Terraform 0.14 and bring up to current Cloud Posse standard ##### why - Support Terraform 0.14v0.53.5
🤖 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)context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​maximmi (#​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🤖 Automatic Updates
Update context.tf @​cloudpossebot (#​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.minimum required Terraform version bumped to 0.13.0, context.tf updated, readme updated @​maximmi (#​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 compliantv0.53.4
🤖 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)context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​maximmi (#​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 compliantv0.53.3
🤖 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)context.tf updated to v0.24.1, minimum required Terraform version bumped to 0.13.0 when needed, readme updated @​maximmi (#​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🤖 Automatic Updates
Update context.tf @​cloudpossebot (#​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.Expose ARN for service so we don't have to manually construct it @​X82Softworks (#​96)
##### what * Expose ARN for service so we don't have to manually construct it ##### why * Ease of use and preventing user error🤖 Automatic Updates
Update Terraform cloudposse/label/null to v0.24.1 @​renovate (#​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)Allow control of letter case of outputs @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
Include updates to exports/context.tf @​&#​8203;Nuru (#&#​8203;122 and #&#​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 validatorsRestore backward compatibility with v0.22.1 and earlier @​&#​8203;Nuru (#&#​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;120
Restore backward compatibility with v0.22.1 and earlier @​&#​8203;Nuru (#&#​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;120
Allow control of letter case of outputs @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
- feat: add support for setting letter case of context tags @​&#​8203;SweetOps (#&#​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 ofupper
,lower
, ortitle
, which will result in generatedtag
names in the corresponding case:NAME
,name
, orName
. For backwards compatibility,title
is the default - You can set
label_value_case
to one ofupper
,lower
,title
, ornone
, which will result in output label values in the corresponding case (withnone
meaning no case conversion of any kind will be done, though the labels will still be subject toregex_replace_chars
). The case converted labels will show up not just in the module output of the labels themselves, but also in thetag
values and in theid
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 id
s in Pascal case by setting label_value_case = "title"
and delimiter = ""
.
minimum required Terraform version bumped to 0.13.0, context.tf updated, readme updated @​maximmi (#​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 compliantv0.53.2
🤖 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 |