This message was deleted.
s
This message was deleted.
b
when I do this, it says
Copy code
pulumi:providers:kubernetes (k8s):
    error: pulumi:providers:kubernetes resource 'k8s's property 'kubeconfig' value {map[apiVersion:{v1} .... {aws-iam-authenticator}]}]}]}]}]} has a problem: provider property values must be strings
i’ve tried using .apply(), JSON.stringify, <string> etc
if I copy and paste the contents of the kubeconfig file as a string instead of using the output, it works
h
Try this:
Copy code
const kubeconfig = infraStack.getOutput("kubeConfig").apply(JSON.stringify);
b
i still have the hardest time in this particular nook of pulumi
awesome that does work thank you
h
np