Is there a way to mark variable as not a secret? `...
# getting-started
h
Is there a way to mark variable as not a secret?
Copy code
kubeconfig_path = pulumi.Output.all(cluster_kubeconfig, cluster.name).apply(lambda args: update_kubeconfig(*args))
pulumi.export("kubeconfigPath", kubeconfig_path)
kubeconfig_path shows as [secret] while it's clearly not.
b
there's
pulumi.unsecret()
h
OK, thanks.
pulumi.export("kubeconfigPath", kubeconfig_path.unsecret(kubeconfig_path))
seems to work. (
pulumi.unsecret
does not seem to exist)