Skip to content

Commit a01b7ca

Browse files
feat: Added missing cookie_name TG stickiness parameter support (#245)
1 parent 5108b4d commit a01b7ca

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ resource "aws_lb_target_group" "main" {
100100
enabled = lookup(stickiness.value, "enabled", null)
101101
cookie_duration = lookup(stickiness.value, "cookie_duration", null)
102102
type = lookup(stickiness.value, "type", null)
103+
cookie_name = lookup(stickiness.value, "cookie_name", null)
103104
}
104105
}
105106

0 commit comments

Comments
 (0)