Hi. I’m trying to define my CustomResource which c...
# general
e
Hi. I’m trying to define my CustomResource which contains digitalOcean k8s. The problem is I need to import existing kubernetes cluster into my project. I’m able to import cluster when I define k8s cluster outside the custom resource by using:
Copy code
pulumi import 'digitalocean:index/kubernetesCluster:KubernetesCluster' my_cluster xxxxx-xxx-xxx
I’ve already tried to import it to the custom recourse by:
Copy code
pulumi import 'custom:mycode:Kubernetes$digitalocean:index/kubernetesCluster:KubernetesCluster' my_cluster xxxxx-xxx-xxx
but it says:
Copy code
error: preview failed: failed to validate provider config: could not find latest version for provider custom: 404 HTTP error fetching plugin from <https://api.github.com/repos/pulumi/pulumi-custom/releases/latest>. If this is a private GitHub repository, try providing a token via the GITHUB_TOKEN environment variable. See: <https://github.com/settings/tokens>
I understand why it shows this, but don’t understand how to fix that. can you suggest?
nevermind. Figured it out.