Releases: skyscrapers/terraform-bluegreen
Releases · skyscrapers/terraform-bluegreen
3.2.3
Fix Interpolation-only expressions in scaling module
3.2.2 Fix cpu-scaling module
Add some extra vars to the scaling module
Add variable for datapoints_to_alarm (#30) This adds the option to customize the `datapoints_to_alarm` attribute of the `aws_cloudwatch_metric_alarm` resources
3.1.0 Removed Type tag as default tag
We've decided to remove the Type
tag from the default list of tags as there was a version inconsistency and we want to let the user select the desired tags he wants to add to the ASGs
3.0.1 Bug-fix after terraform 0.12 upgrade
This PR fixes a bug in the scaling
module introduced after the upgrade to tf 0.12
3.0.0 Terraform 0.12
Refactor to be compatible with Terraform 0.12
2.0.0: Refactor - release 2.0 (#25)
Refactor:
- Improved documentation
- Consolidated variable names and formats to make it consistent with other modules
- Simplified naming
Additions:
- Return the autoscaling group names without creating a dependency on the resources
- Add initial lifecycle hooks variable
Breaking changes:
- Removal of
project
andenvironment
variables in favour of justname
. If you want to keep the old naming format, just setvar.name
asasg-<project>-<name>-<environment>
in thebluegreen
module, and<project>-<environment>-<name>
in thescaling
module. - Split some variables into blue and green. Some parameters were generic for both autoscaling groups and we've now made them specific for each of them.
user_data
->blue_user_data
andgreen_user_data
instance_type
->blue_instance_type
andgreen_instance_type
disk_volume_size
->blue_disk_volume_size
andgreen_disk_volume_size
disk_volume_type
->blue_disk_volume_type
andgreen_disk_volume_type
- Renamed
autoscaling_group_name
variable toautoscaling_group_names
in thescaling
module.
Note: We will soon also move to using launch templates instead of configs.
1.6.0
1.5.0
Add support for assuming a role in the target account for the bluegreen script
Enable bluegreen script to assume a role in the target account (#22) * Enable bluegreen script to assume a role in the target account * Small fixes