代码之家  ›  专栏  ›  技术社区  ›  maxisme

无法删除AWS证书(证书正在使用)

  •  0
  • maxisme  · 技术社区  · 3 年前

    我试图删除两个证书,但收到以下错误消息: enter image description here

    然而,当我跑步时:

    aws elbv2 describe-load-balancers --region us-east-1 --load-balancer-arns
    

    我没有收到退回的负载平衡器?

    如果我尝试直接删除:

    aws elbv2 delete-load-balancer --region us-east-1 --load-balancer-arn ...
    

    0 回复  |  直到 3 年前
        1
  •  0
  •   samtoddler    3 年前

    部署区域API端点时,API网关将代表您创建应用程序负载平衡器(ALB)。负载平衡器归API网关所有,对您不可见。ALB绑定到部署API时使用的ACM证书。

    To remove the binding and allow ACM to delete your certificate, you must remove the API Gateway custom domain that is associated with the certificate.

    资料来源: https://docs.aws.amazon.com/acm/latest/userguide/troubleshoot-apigateway.html

    推荐文章