Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B fix elbv2 cookie name persist between app lb #31436

Merged
merged 32 commits into from
Dec 18, 2023
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
858e878
Modified target_group.go to persist stickiness.app_cookie.cookie_name…
timothyjrogers May 16, 2023
27d24c1
Added acceptance test for changing ALB stickiness type
timothyjrogers May 16, 2023
2655cd5
Added changelog file 31436.txt
timothyjrogers May 16, 2023
74cb6b5
Added acceptance test for changing ALB stickiness type
timothyjrogers May 16, 2023
319593b
Merge commit '74cb6b501ba203ff0bc252beb59ac2e5f482e557' into HEAD
ewbankkit Dec 14, 2023
668fcd1
elbv2: Move constants.
ewbankkit Dec 14, 2023
81c0e43
r/aws_lb_target_group: Tidy up Delete.
ewbankkit Dec 14, 2023
ddce4ea
Tidy up 'findTargetGroup'.
ewbankkit Dec 14, 2023
91060cc
r/aws_lb_target_group: Tidy up Create.
ewbankkit Dec 14, 2023
43d401b
r/aws_lb_target_group: Add attribute constants.
ewbankkit Dec 14, 2023
7f04626
r/aws_lb_target_group: Tidy up Update.
ewbankkit Dec 14, 2023
7cfb2cc
r/aws_lb_target_group: Add 'expandTargetGroupStickinessAttributes'.
ewbankkit Dec 15, 2023
e23d2f2
r/aws_lb_target_group: Tidy up Read.
ewbankkit Dec 15, 2023
c351357
r/aws_lb_target_group: Tidy up 'flattenTargetGroupStickinessAttributes'.
ewbankkit Dec 15, 2023
3d89058
Fixup 'TestAccELBV2TargetGroup_Stickiness_updateStickinessType'.
ewbankkit Dec 15, 2023
36f3c80
Tweak CHANGELOG entry.
ewbankkit Dec 15, 2023
6c80e03
r/aws_lb_target_group: Tidy up 'flattenTargetGroupHealthStateAttribut…
ewbankkit Dec 15, 2023
5c71089
r/aws_lb_target_group: Tidy up 'flattenTargetGroupTargetFailoverAttri…
ewbankkit Dec 15, 2023
d04f929
Add 'flex.Int64ValueToString'.
ewbankkit Dec 15, 2023
2ab3f13
r/aws_lb_target_group: Add and use 'targetGroupAttributeMap'.
ewbankkit Dec 15, 2023
03a55b2
r/aws_lb_target_group: Corrections.
ewbankkit Dec 15, 2023
8638cb6
Add 'verify.StringHasPrefix'.
ewbankkit Dec 15, 2023
fc5f6a0
r/aws_lb_target_group: Tidy up 'flattenTargetGroupHealthCheck'.
ewbankkit Dec 15, 2023
fddd205
d/aws_lb_target_group: Change `deregistration_delay` from `TypeInt` t…
ewbankkit Dec 15, 2023
cb79548
r/aws_lb_target_group_attachment: Alphabetize attributes.
ewbankkit Dec 15, 2023
b053503
r/aws_lb_target_group_attachment: Tidy up Create.
ewbankkit Dec 15, 2023
b80ce96
r/aws_lb_target_group_attachment: Tidy up Delete.
ewbankkit Dec 15, 2023
4dcf39c
r/aws_lb_target_group_attachment: Tidy up Read.
ewbankkit Dec 15, 2023
767fd80
r/aws_lb_target_group_attachment: Tidy up Read.
ewbankkit Dec 15, 2023
f8592d6
Add 'flex.StringValueToInt64'.
ewbankkit Dec 15, 2023
06c960c
r/aws_lb_target_group_attachment: Tidy up acceptance tests.
ewbankkit Dec 15, 2023
f05bbfd
Fix 'TestAccELBV2TargetGroupAttachment_disappears'.
ewbankkit Dec 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
r/aws_lb_target_group: Add 'expandTargetGroupStickinessAttributes'.
  • Loading branch information
ewbankkit committed Dec 15, 2023
commit 7cfb2cc4e906cba10f60047b8ea048a3ded65df2
4 changes: 2 additions & 2 deletions internal/service/elbv2/const.go
Original file line number Diff line number Diff line change
@@ -95,8 +95,8 @@ func httpXFFHeaderProcessingMode_Values() []string {
const (
// The following attributes are supported by all load balancers:
targetGroupAttributeDeregistrationDelayTimeoutSeconds = "deregistration_delay.timeout_seconds"
targetGroupAttributeDeregistrationStickinessEnabled = "stickiness.enabled"
targetGroupAttributeDeregistrationStickinessType = "stickiness.enabled"
targetGroupAttributeStickinessEnabled = "stickiness.enabled"
targetGroupAttributeStickinessType = "stickiness.type"

// The following attributes are supported by Application Load Balancers and Network Load Balancers:
targetGroupAttributeLoadBalancingCrossZoneEnabled = "load_balancing.cross_zone.enabled"
Loading