-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Geartrixy/feature/offloading
Feature/offloading
- Loading branch information
Showing
6 changed files
with
132 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Release Version: 0.0.2 | ||
|
||
BACKWARDS INCOMPATIBILITIES / NOTES: | ||
|
||
* N/A | ||
|
||
NEW FEATURES: | ||
|
||
* The HTTPS listener now supports offloading to HTTP target groups. | ||
Activated by setting parameter "lb_https_offloading=true" | ||
|
||
IMPROVEMENTS: | ||
|
||
* Added the following output values: lb_name, lb_arn, lb_arn_suffix, lb_dns_name, lb_zone_id | ||
|
||
BUG FIXES: | ||
|
||
* N/A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#The name of the LB | ||
output "lb_name" { | ||
value = "${aws_lb.application_loadbalancer.name}" | ||
} | ||
#The ARN of the load balancer | ||
output "lb_arn" { | ||
value = "${aws_lb.application_loadbalancer.arn}" | ||
} | ||
#The DNS name of the load balancer | ||
output "lb_dns_name" { | ||
value = "${aws_lb.application_loadbalancer.dns_name}" | ||
} | ||
#The ARN suffix for use with CloudWatch Metrics | ||
output "lb_arn_suffix" { | ||
value = "${aws_lb.application_loadbalancer.arn_suffix}" | ||
} | ||
#The canonical hosted zone ID of the load balancer (to be used in a Route 53 Alias record) | ||
output "lb_zone_id" { | ||
value = "${aws_lb.application_loadbalancer.zone_id}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters