salmon-ghost-86211
02/25/2020, 1:17 PMimport * 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
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.
Should this be solved with the Listener
object or maybe Ingress
or IngressList
?No matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by