Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Merge branch 'release/1.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Aug 9, 2019
2 parents b71132a + 05abfd1 commit fb9e26b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 1.4.0 - 2019-08-09
- Changed: health_check_path is always '/' upon aws_alb_target_group creation #22 @tminuss

## 1.3.0 - 2018-12-20
- Added option to control the load balancer externally by setting the target group.
- Added option to connect to existing load balancer by setting the listener.
Expand Down Expand Up @@ -39,7 +42,9 @@ https://github.com/philips-software/terraform-aws-ecs-service/tags/1.0.0
- Refactor outputs to support terraform 0.11
- Add support to mount volumes

[Unreleased]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.2.1...HEAD
[Unreleased]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.4.0...HEAD
[1.4.0]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.2.1...1.3.0
[1.2.1]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.2.0...1.2.1
[1.2.0]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/philips-software/terraform-aws-ecs-service/compare/1.0.1...1.1.0
Expand Down
2 changes: 1 addition & 1 deletion alb.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ resource "aws_alb_target_group" "target_group" {

health_check = ["${merge(
map("protocol", format("%s", var.container_ssl_enabled ? "HTTPS" : "HTTP")),
map("path", "/"),
map("path", format("%s", var.health_check_path)),
map("matcher", format("%s", var.health_check_matcher)),
map("interval", format("%s", var.health_check_interval)),
var.health_check
Expand Down

0 comments on commit fb9e26b

Please sign in to comment.