gpt4 book ai didi

amazon-web-services - 使用 terraform 在 aws_lb_listener 上设置多个证书

转载 作者:行者123 更新时间:2023-12-04 03:03:02 24 4
gpt4 key购买 nike

使用 terraform,有没有办法使用 aws_lb_listener 设置多个证书 arn?

实际上,“certificate_arn”字段似乎只接受一个证书 arn。是否有添加多个证书 arn 的技巧?

就像是:

resource "aws_lb_listener" "https" {
certificate_arn = ["${var.certificate1_arn}", "${var.certificate2_arn}"]

}

最佳答案

现在似乎可以使用 https://www.terraform.io/docs/providers/aws/r/lb_listener_certificate.html

This resource is for additional certificates and does not replace the default certificate on the listener.


resource "aws_lb_listener" "front_end" {
# ...
}

resource "aws_lb_listener_certificate" "example" {
listener_arn = "${aws_lb_listener.front_end.arn}"
certificate_arn = "${aws_acm_certificate.example.arn}"
}

关于amazon-web-services - 使用 terraform 在 aws_lb_listener 上设置多个证书,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47416717/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com