ALB SSL policy conflict (AWS Load Balancer Controller)

ALB SSL policy conflict (AWS Load Balancer Controller)

Symptom

You may see an error like this in the AWS Load Balancer Controller logs or in a failed model build:

复制代码
Failed build model due to failed to merge listenPort config for port: 443: conflicting sslPolicy,
    <NAMESPACE>/<INGRESS_A>: ELBSecurityPolicy-TLS13-1-2-2021-06 |
    <NAMESPACE>/<INGRESS_B>: ELBSecurityPolicy-TLS13-1-2-Res-2021-06

This happens when two or more Ingress resources are being grouped onto the same ALB listener (typically port 443) but they specify different TLS/SSL policies. An ALB listener can have only one ssl-policy, so the controller refuses to merge the conflicting configuration.

Why this occurs

Ingresses are grouped together by the controller when they share grouping annotations or an explicit load balancer name. Common grouping causes:

  • They share alb.ingress.kubernetes.io/group.name.
  • They share alb.ingress.kubernetes.io/load-balancer-name (forces the same ALB).
  • Other grouping rules in your configuration (less common).

When Ingresses are grouped, listener-level annotations must match across all grouped Ingresses. alb.ingress.kubernetes.io/ssl-policy is a listener-level setting and therefore must be identical for all members of the group.

Fix options

You have three practical ways to resolve the conflict depending on your needs:

  1. Unify the ssl policy across the grouped Ingresses

    • Pick a single policy and apply it to every Ingress in the ALB group. For example:
yaml 复制代码
alb.ingress.kubernetes.io/ssl-policy: ELBSecurityPolicy-TLS13-1-2-2021-06
复制代码
- Apply the change by editing the Ingress resources:
bash 复制代码
kubectl -n test-dev edit ingress test-app-ingress
kubectl -n test-dev edit ingress test-mgmt-ingress
复制代码
- Note: the `-Res` policy is generally more restrictive. For a detailed comparison of these policies, see the [Reference: AWS TLS Policy Comparison](#reference-aws-tls-policy-comparison) section below. Confirm that all client platforms that access the ALB can negotiate the stricter policy before switching.
  1. Stop grouping them so each Ingress gets its own ALB

    • Give each Ingress a different alb.ingress.kubernetes.io/group.name, or remove the grouping annotation entirely.

    • If you used alb.ingress.kubernetes.io/load-balancer-name on multiple Ingresses, use distinct names or remove the annotation so the controller creates separate ALBs.

    • Each ALB will then be able to use its own independent ssl-policy.

  2. Consolidate into a single Ingress (when appropriate)

    • If the Ingresses represent related rules for the same service domain, combine them into one Ingress with multiple rules and a single alb.ingress.kubernetes.io/ssl-policy.
    • This reduces ALB count and simplifies management.

How to identify grouped Ingresses

List Ingress annotations in the namespace and look for group or load balancer name annotations (replace with your namespace):

bash 复制代码
kubectl get ingress -n <NAMESPACE> \
    -o custom-columns=NAME:.metadata.name,GROUP:.metadata.annotations.alb.ingress.kubernetes.io/group.name,LBNAME:.metadata.annotations.alb.ingress.kubernetes.io/load-balancer-name,SSLPOLICY:.metadata.annotations.alb.ingress.kubernetes.io/ssl-policy

This shows which Ingresses belong to the same group and which ssl-policy each has.

Other annotations that must match when grouped

When Ingresses are grouped, listener-level properties must be consistent across the group. Common listener-level annotations that must match include:

  • alb.ingress.kubernetes.io/listen-ports
  • alb.ingress.kubernetes.io/scheme (internet-facing or internal)
  • alb.ingress.kubernetes.io/ip-address-type (ipv4 or dualstack)

If any of these differ between grouped Ingresses the controller may also fail to build the model.

After you make changes

The AWS Load Balancer Controller will reconcile automatically. To follow progress and inspect errors, watch the controller logs:

bash 复制代码
kubectl -n kube-system logs deploy/aws-load-balancer-controller -f

If conflicts persist, re-check all grouped Ingresses and ensure their listener-level annotations are identical.

Summary

Either unify the alb.ingress.kubernetes.io/ssl-policy across all Ingresses that share an ALB, or split them into separate ALBs by changing or removing grouping annotations. Consolidating related rules into a single Ingress is another valid approach when appropriate.


Reference: AWS TLS Policy Comparison

Below is a technical comparison of the two AWS managed TLS policies commonly seen in ALB/NLB configuration conflicts:

ELBSecurityPolicy-TLS13-1-2-2021-06 (standard) vs ELBSecurityPolicy-TLS13-1-2-Res-2021-06 (restricted)

What they have in common:

  • Protocols: TLS 1.3 and TLS 1.2 only (TLS 1.0/1.1 disabled)
  • Works with RSA and ECDSA certificates
  • TLS 1.3 cipher suites are the same in both (AES-GCM 128/256 and CHACHA20-POLY1305)

Key differences:

ELBSecurityPolicy-TLS13-1-2-2021-06 (standard):

  • Includes a wider set of TLS 1.2 ciphers for compatibility, typically including some CBC-mode suites (e.g., ECDHE-*-AES128/256-SHA256/SHA384) alongside AEAD suites (AES-GCM, CHACHA20)
  • Better for supporting older TLS 1.2 clients (older Java, legacy Windows/IE stacks) that don't negotiate GCM/CHACHA20

ELBSecurityPolicy-TLS13-1-2-Res-2021-06 (restricted):

  • Removes TLS 1.2 CBC-mode and SHA1 suites; keeps only modern AEAD, forward-secrecy ciphers (ECDHE with AES-GCM and CHACHA20-POLY1305)
  • Stricter posture; aligns better with modern security guidance and many compliance requirements
  • May break very old TLS 1.2 clients that need CBC/SHA1

When to choose which:

  • Pick "Res" if you want the strongest security and your clients are modern (most current browsers, recent JVMs, updated OS stacks)
  • Pick the non-Res policy if you have to accommodate legacy TLS 1.2 clients and you're seeing handshake failures with "Res"

How to verify with clients:

  • Test a legacy CBC suite against your endpoint; it should fail under "Res" and succeed under the standard policy. Example:
bash 复制代码
openssl s_client -connect your.host:443 -tls1_2 -cipher 'ECDHE-RSA-AES128-SHA256'
  • Test modern AEAD suites; they should succeed on both:
bash 复制代码
openssl s_client -connect your.host:443 -tls1_2 -cipher 'ECDHE-RSA-AES128-GCM-SHA256'
openssl s_client -connect your.host:443 -tls1_3
相关推荐
蜡台5 小时前
本机 局域网 搭建本地 HTTPS 域名完整方案
网络协议·http·https·openssl
Alkaid20779 小时前
为什么查 IP 有两个结果?这个问题问倒过多少人
网络协议·tcp/ip
测试运维日常笔记10 小时前
AWS EKS 集群部署与清理手顺
云计算·aws
严谨的麻辣烫1 天前
数据中心出口与住宅出口的技术差异:从 ASN 到 TCP 行为的一次拆解
网络·网络协议·tcp/ip
2501_915921431 天前
抓包鹰 Traceeagle 解除证书绑定,SSL Pinning 解除
网络·网络协议·网络安全·ios·adb·https·ssl
Lucky_Turtle1 天前
【SSL】letsencrypt域名证书申请,Cloudflare域名
网络·网络协议·ssl
路由侠内网穿透1 天前
本地部署企业级快速开发平台芋道管理后台并实现外部访问
运维·服务器·网络·网络协议
故乡dee云1 天前
AWS 产品太多不会选?按“网站、数据库、文件、日志”4 类需求快速匹配
数据库·云计算·aws
冠希陈、1 天前
Nginx部署SSL,导致多站点串站问题
运维·nginx·ssl
Sylvia33.1 天前
篮球数据API的技术架构与工程实践:基于火星数据WebSocket实时推送体系
java·python·websocket·网络协议·架构