Using terraform, is there a way using aws_lb_listener to set multiple certificate arn?
Practicallyit seems "certificate_arn" field is accepting only one certificate arn. Is there a trick to add multiple certificates arn?
Something like:
resource "aws_lb_listener" "https" {
certificate_arn = ["${var.certificate1_arn}", "${var.certificate2_arn}"]
}