Has anyone been able to use a `publicIpAddress` fr...
# azure
a
Has anyone been able to use a
publicIpAddress
from an azure resource when provisioning an Nginx Ingress Controller? I can't seem to get the nginx-ingress-controller to accept the one I provide in pulumi with this code.
Copy code
// Deploy ingress-controller using helm to AKS Cluster
const nginxIngress = new k8s.helm.v3.Chart("nginx2", {
    chart: "nginx-ingress-controller",
    repo: "bitnami",
    values: {
        "controller.service.loadBalancerIP": infra.getOutput("publicIpAddress"),
        serviceType: "LoadBalancer",
        nodeCount: 2,
    }
}, {provider: k8sProvider});