Skip to content

Releases: cloudposse/terraform-aws-eks-workers

v0.19.4

20 Aug 19:15
f261b3d
Compare
Choose a tag to compare
v0.19.4 Pre-release
Pre-release

🤖 Automatic Updates

chore(deps): update terraform cloudposse/label/null to v0.25.0 @renovate (#80)

This PR contains the following updates:

Package Type Update Change
cloudposse/label/null (source) module minor 0.24.1 -> 0.25.0

Release Notes

cloudposse/terraform-null-label

v0.25.0

Compare Source

Add "tenant", "labels_as_tags", and "descriptors" @​Nuru (#​132) ##### what - Add additional label and `id` component: `tenant` - New input `labels_as_tags` controls which labels are exported as tags - New input `descriptor_formats` generates new output `descriptors` - Update README, remove link to obsolete `terraform-terraform-label` ##### why - Support users that host resources on behalf of and/or dedicated to single customers - Supersedes and closes #​131, giving people control over which tags the module generates - Simple mechanism for creating multiple identifiers from the same inputs, reducing the need to create multiple instances of `null-label` - Document `tenant`, `labels_as_tags`, `descriptor_formats`, add additional clarification, stop promoting obsolete module
Fix: Update README Snippets @​korenyoni (#​130) ##### what * Update README snippets to reflect use of Terraform Registry. ##### why * Including snippets that reflect use of the Terraform Registry make it easier for users to quickly instantiate a null_label module. * README is out of date and does not include snippets that reflect use of the Terraform Registry. ##### references * N/A
Bridgecrew compliance @​Nuru (#​125) ##### what - Resolve Bridgecrew compliance complaint about example Autoscaling Group (BC_AWS_GENERAL_31) - Fix typo in README - Include Terraform lock file in `.gitignore` ##### why - Get clean Bridgecrew badge - Correct confusing error - Ensure lock files are not checked into GitHub ##### note The PR can and should be merged into `master` to update README and Bridgecrew without triggering a new release/version. These changes have no effect on the actual module in use and a release will create unnecessary ripple effects. However, merging to `master` will update the README and badges, so is worthwhile, and the changes will move forward into the next release.

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.19.3

18 Aug 14:53
4cbe9f3
Compare
Choose a tag to compare
v0.19.3 Pre-release
Pre-release

🤖 Automatic Updates

chore(deps): update terraform cloudposse/security-group/aws to v0.3.2 @renovate (#79)

This PR contains the following updates:

Package Type Update Change
cloudposse/security-group/aws (source) module patch 0.3.1 -> 0.3.2

Release Notes

cloudposse/terraform-aws-security-group

v0.3.2

Compare Source

🚀 Enhancements

add missing required input (vpc_id) in the example @​Zaargh (#​20) #### what * add missing required input `vpc_id` in the example

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.19.2 Unstable Pre-Release (see v0.19.0)

25 Jun 03:53
e46ad4a
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.27.0 @renovate (#77)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) module minor 0.26.0 -> 0.27.0

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.27.0

Compare Source

Fix instance profile not present bug @​cdobbyn (#​72) #### what - This block should not be defined if no instance profile name is present. #### why - If `ec2_instance_profile` variable is not present terraform will want to continually apply the following block on the launch template every time terraform apply occurs. Additionally terraform wants to auto-increment the `latest_version`. ``` iam_instance_profile {} ``` #### references closes #​71

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.19.1 Unstable Pre-Release (see v0.19.0)

21 Jun 19:37
d1eb5f4
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.26.0 @renovate (#74)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) module minor 0.25.0 -> 0.26.0

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.26.0

Compare Source

Add `warm_pool` @​nitrocode (#​70) #### what * Add `warm_pool` #### why > A warm pool gives you the ability to decrease latency for your applications that have exceptionally long boot times, for example, because instances need to write massive amounts of data to disk. With warm pools, you no longer have to over-provision your Auto Scaling groups to manage latency in order to improve application performance. #### references * https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-warm-pools.html #### notes

All inputs have to be provided e.g.

This works

  warm_pool = {
    pool_state                  = "Running"
    min_size                    = 1
    max_group_prepared_capacity = null
  }

This fails

  warm_pool = {
    pool_state                  = "Running"
    min_size                    = 1
  }

The only way around this is to use the optional() variable feature which is still experimental.


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.19.0 Unstable Pre-Release

15 Jun 19:01
01463d2
Compare
Choose a tag to compare
Pre-release

We are revising and standardizing our handling of security groups and security group rules across all our Terraform modules. This is an early attempt with significant breaking changes. We will make further breaking changes soon, so using this version is not recommended.

feat: use security-group module instead of resource @SweetOps (#73)

what

  • use security-group module instead of resource
  • update tests

why

  • more flexible than current implementation
  • bring configuration of security group/rules to one standard

references

  • CPCO-409

v0.18.4

24 May 16:47
69e9de0
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.25.0 @renovate (#72)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) module minor 0.24.1 -> 0.25.0

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.25.0

Compare Source

Add autoscaling policy arn to outputs @​linhkikuchi (#​69) #### what * To add autoscaling policy scale up and down arn to outputs

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.18.3

14 May 00:46
206792a
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.24.1 @renovate (#69)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) module patch 0.24.0 -> 0.24.1

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.24.1

Compare Source

🐛 Bug Fixes

Remove duplicate tags from launch template @​Nuru (#​68) #### what - Remove duplicate tags from launch template #### why - Apparently due to merge errors and oversights, #​56 restored a static tag specification removed by #​34 and replaced with dynamic tag specifications. The result is that launch templates were getting created with duplicate "volume" tags.

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.18.2

09 May 08:12
8407700
Compare
Choose a tag to compare

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.24.0 @renovate (#68)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) module minor 0.23.1 -> 0.24.0

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.24.0

Compare Source

set desired_capacity in aws_autoscaling_group as optional @​ByJacob (#​67) #### what * set desired_capacity in aws_autoscaling_group as optional #### why * When auto-scaling is set to 2 and updating asg, the number of instances drops to the minimum value #### references * #​66

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.18.1

30 Apr 07:28
3966ba4
Compare
Choose a tag to compare

Closes #66

🤖 Automatic Updates

chore(deps): update terraform cloudposse/ec2-autoscale-group/aws to v0.23.1 @renovate (#67)

This PR contains the following updates:

Package Type Update Change
cloudposse/ec2-autoscale-group/aws (source) terraform patch 0.23.0 -> 0.23.1

Release Notes

cloudposse/terraform-aws-ec2-autoscale-group

v0.23.1

Compare Source

🐛 Bug Fixes

Support Terraform 0.15 @​Nuru (#​65) #### what - Document that this module can only create `SimpleScaling` autoscaling policies. Closes #​55 - Remove obsolete call to `list` function. Closes #​64

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

v0.18.0

17 Apr 19:59
2218530
Compare
Choose a tag to compare
Fix tags, expose IMDS settings @Nuru (#65)

what

  • Expose settings for AWS Instance Metadata Service
  • Fix Autoscaling Group tags
  • Added tests for ASG name and tags

why

  • Default to more secure options
  • PR #63 added the required Kubernetes tag but set the wrong value for some other tags
  • Prevent regression

references