Hi, I create ALB ingress using `k8s.yaml.v2.Config...
# kubernetes
f
Hi, I create ALB ingress using
k8s.yaml.v2.ConfigFile
to apply yaml manifest. How can I use Pulumi to get the created ingress and get its DNS ADDRESS so that I can create Route53 records from that ?
c
if you use
kubernetes.networking.v1.Ingress
to create the ingress you can get it directly, otherwise you'll need to use https://www.pulumi.com/registry/packages/aws/api-docs/lb/getloadbalancer/
f
thanks @cuddly-computer-18851