I'm having an issue where Pulumi's pulumi.dynamic....
# general
d
I'm having an issue where Pulumi's pulumi.dynamic.ResourceProvider for TypeScript can't decide how to import a package... It flip-flops between the correct module name and something that doesn't exist, even though nothing else about the system is changing -- this means about 50% of deployments fail. Later deployments will compute the correct name and look like:
Copy code
~ pulumi-nodejs:dynamic:Resource: (update)
                    [id=69af71b8-a104-4b39-8b98-5b00f3aa1a0b]
                    [urn=urn:pulumi:staging::production-cloud::zim:GCP:Networking$Zim:GCP:Image$Zim:GCP:DockerImage$pulumi-nodejs:dynamic:Resource::image-base-docker-image-remote-build]
                  ~ __provider     : 
                        ...
                          }).apply(undefined, undefined).apply(this, arguments);
                        }
                      - const googleAuth = require("@zim/jester/node_modules/@zim/pulumi-components/node_modules/google-auth-library/build/src/index.js");
                      + const googleAuth = require("google-auth-library/build/src/index.js");
                        function __createBuild(__0) {
                          return (function() {
                        ...