I have created a Kubernetes Ingress using the foll...
# aws
s
I have created a Kubernetes Ingress using the following code.
Copy code
import * as k8s from "@pulumi/kubernetes";

const httpsIngressResource = new k8s.extensions.v1beta1.Ingress(...
An ALB is created with an HTTPS/443 listener and the rules I have specified, but the problem is there is no HTTP/80 listener that redirects to HTTPS. The Ingress call doesn't look like it supports that either. It looks like I could do something like
Copy code
import * as aws from "@pulumi/aws";

const httpListener = new aws.lb.Listener("httpListener", {
but I'm not sure how to reference the load balancer created above. The only piece of data that seems to cross over between AWS and Pulumi is the URL. Can someone provide assistance with either the
Listener
object or maybe
Ingress
or
IngressList
to solve this problem?