Skip to main content

Gruntwork release 2018-10

Guides / Update Guides / Releases / 2018-10

This page is lists all the updates to the Gruntwork Infrastructure as Code Library that were released in 2018-10. For instructions on how to use these updates in your code, check out the updating documentation.

Here are the repos that were updated:

gruntwork

v0.0.23

Published: 10/13/2018 | Release notes

https://github.com/gruntwork-io/gruntwork/pull/33: Fixes https://github.com/gruntwork-io/gruntwork/issues/18 where member level org users could not go through the github grant workflow due to not being included to the created team as a maintainer in the initial step.

This also adds additional logging that shows you which github user you are authenticated as.

v0.0.22

Published: 10/12/2018 | Release notes

https://github.com/gruntwork-io/gruntwork/pull/32: This PR updates the IAM role the gruntwork CLI creates in each of the customer's AWS accounts so that it can be assumed not only from Gruntwork's master account (so we can deploy the Ref Arch), but also so it can be assumed from the customer's own security account (or, in a single-account deployment, that same account). The reason to add this is that we now deploy the Reference Architecture by launching an EC2 Instance in the customer's security account and letting it do the deployment. This includes assuming an IAM Role to get access to each of the customer's other accounts.

terraform-aws-asg

v0.6.19

Published: 10/27/2018 | Release notes

Here's an example of how to first launch Module A and then launch Module B:

module "a" {
# Be sure to update to the latest version of this module
source = "git::git@github.com:gruntwork-io/module-asg.git//modules/server-group?ref=v0.6.19"
...
}

module "b" {
source = "git::git@github.com:gruntwork-io/module-asg.git//modules/server-group?ref=v0.6.19"

# It's important that you use the "rolling_deployment_done" output of module A, not just any output
wait_for = "${module.a.rolling_deployment_done}"
...
}

v0.6.18

Published: 10/16/2018 | Release notes

https://github.com/gruntwork-io/module-asg/pull/46, https://github.com/gruntwork-io/module-asg/pull/47: Fix the asg-rolling-deploy module so the script it uses within works with either Python 2 or Python 3.

terraform-aws-ci

v0.13.3

Published: 10/18/2018 | Release notes

https://github.com/gruntwork-io/module-ci/pull/77: Update the git-add-commit-push script to check there are files staged for commit before trying to commit.

terraform-aws-data-storage

v0.7.0

Published: 10/15/2018 | Release notes

https://github.com/gruntwork-io/module-data-storage/pull/54:

Changes to the lambda-cleanup-snapshots, lambda-copy-shared-snapshot, lambda-create-snapshot, and lambda-share-snapshot modules:

  1. They now all use package-lambda under the hood instead of the older lambda code that used to live in module-ci. The new version renames some resources and changes the name of the CloudWatch events/targets to be a bit shorter to help avoid exceeding the max length allowed by AWS.

  2. They now expose optional lambda_namespace and schedule_namespace parameters that you can use to specify a custom namespace for the lambda function and scheduling resources, respectively. You can use this to completely customize all the names of resources created by these modules.

  3. The aws_region data source no longer uses the current parameter, which is deprecated.

If you're already using these lambda modules and update, all the old lambda functions and schedule resources will be deleted and new ones created to replace them. Since these are just scheduled background jobs, this should not cause any problems, but just be aware that there will be lots of "delete and recreate" in your Terraform plan.

Changes to the rds module:

  1. Added a depends_on clause for the aws_subnet_group resource so that terraform destroy happens in the right order and doesn't intermittently hit errors.

terraform-aws-ecs

v0.10.0

Published: 10/29/2018 | Release notes

https://github.com/gruntwork-io/module-ecs/pull/82 : ECS deployment checker

This is a backwards incompatible change. See below for information on how to upgrade.

When deploying containers to the ECS service resources in terraform, the built in resources will return a successful status code on apply as soon as the container has been scheduled for deployment. However, this only checks if the container is scheduled to run and not necessarily if the container is actually running on the service. This means that the new container you requested may not actually be up and running when the terraform apply finishes. Worse, there may be an error in the container that you may not detect until a manual verification process after the deployment.

All of the ecs-service modules in module-ecs will now run a separate binary as part of the deployment to verify the container is actually running before completing the apply. This binary will wait for up to 10 minutes (configurable via the deployment_check_timeout_seconds input parameter) before timing out the check and returning the last 5 events on the ECS services, helping you debug potential deployment failures during the terraform apply. In addition, if you setup an ALB or NLB with the service, the binary will check the ALB/NLB to verify the container is passing the healthcheck before exiting.

The binary will automatically be triggered with each deploy when you update to module-ecs v0.10.0. This binary requires a working python install to run (supports versions 2.7, 3.5, 3.6, and 3.7). If this is undesirable or if you do not have a working python install, you can get the old behavior by setting enable_ecs_deployment_check to false on the module inputs.

v0.9.0

Published: 10/20/2018 | Release notes

https://github.com/gruntwork-io/module-ecs/pull/94 : ecs-service-with-discovery now supports extending the ECS task with additional IAM roles and security groups.

This is a backwards incompatible change for the ecs-service-with-discovery module. Specifically:

  • ECS task will now need a IAM role to be attached, so when applying to the new version, a new role will be created and when attaching, will replace the existing task resource.
  • The module has a new required input variable environment_name used to distinguish the different IAM roles for each environment.

terraform-aws-lambda

v0.3.0

Published: 10/15/2018 | Release notes

https://github.com/gruntwork-io/package-lambda/pull/22:

BACKWARDS INCOMPATIBLE CHANGE

The scheduled-lambda-job module now namespaces all of its resources with the format "${var.lambda_function_name}-scheduled" instead of "${var.lambda_function_name}-scheduled-lambda-job". This makes names shorter and less likely to exceed AWS name length limits. If you apply this new version, your CloudWatch events, targets, and permissions will be destroyed and recreated, which is typically harmless. If you wish to override the namespacing behavior, you now set a new input variable called namespace.

terraform-aws-monitoring

v0.10.0

Published: 10/16/2018 | Release notes

https://github.com/gruntwork-io/module-aws-monitoring/pull/54: Fix the alarm name used by the asg-disk-alarms module to include the file system and mount path. This ensures that if you create multiple alarms for multiple disks on the same auto scaling groups, they each get a unique name, rather than overwriting each other.

v0.9.3

Published: 10/8/2018 | Release notes

https://github.com/gruntwork-io/module-aws-monitoring/pull/51: Fix a bug where the load-balancer-access-logs module would always show a diff for the S3 bucket lifecycle settings when you ran plan, even though nothing changed.

v0.9.2

Published: 10/8/2018 | Release notes

https://github.com/gruntwork-io/module-aws-monitoring/pull/50: The cloudwatch-log-aggregation-scripts, cloudwatch-memory-disk-metrics-scripts, and syslog modules now support Amazon Linux 2.

terraform-aws-openvpn

v0.8.0

Published: 10/10/2018 | Release notes

https://github.com/gruntwork-io/package-openvpn/pull/53:

BACKWARDS INCOMPATIBLE CHANGE

package-openvpn now uses bash-commons under the hood. The behavior is identical, but you must now install bash-commons before installing any of the package-openvpn modules. For example, in your OpenVPN packer template, you should add bash-commons as one of the very first items:

gruntwork-install --module-name 'bash-commons' --repo 'https://github.com/gruntwork-io/bash-commons' --tag 'v0.0.6'

terraform-aws-security

v0.15.3

Published: 10/30/2018 | Release notes

  • #115: Fix test failures caused by #114

  • #116: Update the os-hardening module to the latest Gruntwork best practices and dependencies

  • #117: Update bash scripts in several modules to use https://github.com/gruntwork-io/bash-commons instead of reinventing the wheel.

A special thanks to @jeckhart for contributing all of these PRs!

v0.15.2

Published: 10/8/2018 | Release notes

https://github.com/gruntwork-io/module-security/pull/111: Fix a bug where the cloudtrail module would always show a diff for the S3 bucket lifecycle settings when you ran plan, even though nothing changed.