This message was deleted.
# general
s
This message was deleted.
b
Is it possible to tell Pulumi to create an ELB with http and https listeners when I expose a k8s service as type “LoadBalancer”?
yes! add an annotation to your service like this:
Copy code
<http://service.beta.kubernetes.io/aws-load-balancer-ssl-cert|service.beta.kubernetes.io/aws-load-balancer-ssl-cert>: <acm arn>
or, is there a better way to do this?
A common pattern is to use an ingress controller which creates your ELB, and then register ingress resources
🙌 1
f
great, thanks!
b
which sdk are you using?
f
Typescript