Open cooervo opened 1 day ago
I also tried wrapping the CRD in a custom resource but still get same error:
const clusterSecretStore = new k8s.apiextensions.CustomResource(
`${env}-cluster-secret-store`,
{
apiVersion: 'external-secrets.io/v1alpha1',
kind: 'ClusterSecretStore',
metadata: {
name: 'gcp-cluster-secret-store',
},
spec: {
provider: {
// gcpsm = GCP Secret Manager
gcpsm: {
projectID: GCP_PROJECT,
},
},
},
},
{ dependsOn: [externalSecretsApp], provider },
);
What happened?
Getting error when running
pulumi update
:Example
I'm getting the above error when trying to install in same
pulumi update
the following 2 resources:Even though first resource,
externalSecretsApp
, is dependency independsOn
of second resource,clusterSecretStore
, I still get the error:Output of
pulumi about
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction. To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).