Skip to content

Commit e29a233

Browse files
authored
feat: Adding support for ALPN policies (#206)
1 parent dedc2e5 commit e29a233

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ All notable changes to this project will be documented in this file.
66
## [Unreleased]
77

88

9-
109
<a name="v6.1.0"></a>
1110
## [v6.1.0] - 2021-05-15
1211

1312
- feat: Add tags to listener and listener rules ([#199](https://github.com/terraform-aws-modules/terraform-aws-alb/issues/199))
13+
- feat: Added support to map ALPN policies in target group attachments.
1414
- chore: update CI/CD to use stable `terraform-docs` release artifact and discoverable Apache2.0 license ([#198](https://github.com/terraform-aws-modules/terraform-aws-alb/issues/198))
1515
- chore: Updated versions in README
1616
- chore: Updated versions in README

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,7 @@ resource "aws_lb_listener" "frontend_https" {
412412
protocol = lookup(var.https_listeners[count.index], "protocol", "HTTPS")
413413
certificate_arn = var.https_listeners[count.index]["certificate_arn"]
414414
ssl_policy = lookup(var.https_listeners[count.index], "ssl_policy", var.listener_ssl_policy_default)
415+
alpn_policy = lookup(var.https_listeners[count.index], "alpn_policy", null)
415416

416417
dynamic "default_action" {
417418
for_each = length(keys(var.https_listeners[count.index])) == 0 ? [] : [var.https_listeners[count.index]]

0 commit comments

Comments
 (0)