diff --git a/pkg/equality/elbv2/compare_option_for_actions.go b/pkg/equality/elbv2/compare_option_for_actions.go index b267f5984..f57a6094f 100644 --- a/pkg/equality/elbv2/compare_option_for_actions.go +++ b/pkg/equality/elbv2/compare_option_for_actions.go @@ -30,6 +30,7 @@ func CompareOptionForForwardActionConfig() cmp.Option { return cmp.Options{ equality.IgnoreLeftHandUnset(elbv2types.ForwardActionConfig{}, "TargetGroupStickinessConfig"), cmpopts.IgnoreUnexported(elbv2types.ForwardActionConfig{}), + cmpopts.IgnoreUnexported(elbv2types.TargetGroupStickinessConfig{}), CompareOptionForTargetGroupTuples(), } } diff --git a/pkg/equality/elbv2/compare_option_for_rule_conditions.go b/pkg/equality/elbv2/compare_option_for_rule_conditions.go index 7fd87fe22..2dab4c94b 100644 --- a/pkg/equality/elbv2/compare_option_for_rule_conditions.go +++ b/pkg/equality/elbv2/compare_option_for_rule_conditions.go @@ -11,9 +11,11 @@ func CompareOptionForRuleCondition() cmp.Option { return cmp.Options{ cmpopts.IgnoreUnexported(elbv2types.RuleCondition{}), cmpopts.IgnoreUnexported(elbv2types.HostHeaderConditionConfig{}), + cmpopts.IgnoreUnexported(elbv2types.HttpHeaderConditionConfig{}), cmpopts.IgnoreUnexported(elbv2types.HttpRequestMethodConditionConfig{}), cmpopts.IgnoreUnexported(elbv2types.PathPatternConditionConfig{}), cmpopts.IgnoreUnexported(elbv2types.QueryStringConditionConfig{}), + cmpopts.IgnoreUnexported(elbv2types.QueryStringKeyValuePair{}), cmpopts.IgnoreUnexported(elbv2types.SourceIpConditionConfig{}), cmpopts.IgnoreFields(elbv2types.RuleCondition{}, "Values"), }