Skip to content

Commit

Permalink
feat: Added missing cookie_name TG stickiness parameter support (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlavaSubotskiy authored Apr 21, 2022
1 parent 5108b4d commit a01b7ca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ resource "aws_lb_target_group" "main" {
enabled = lookup(stickiness.value, "enabled", null)
cookie_duration = lookup(stickiness.value, "cookie_duration", null)
type = lookup(stickiness.value, "type", null)
cookie_name = lookup(stickiness.value, "cookie_name", null)
}
}

Expand Down

0 comments on commit a01b7ca

Please sign in to comment.