Relatively often I get this error from pulumi, I'm...
# general
g
Relatively often I get this error from pulumi, I'm not quite sure what does it relate to. OS: MacOS 13.2.1 (22D68) Mac M1 pulumi binary is Arm64
Copy code
Error: invocation of aws:route53/getZone:getZone returned an error: error reading from server: read tcp 127.0.0.1:62137->127.0.0.1:62134: use of closed network connection 
...
In past had a problem due to an error in GoLang not being able to select 1 DNS server when DHCP offered 3, so I set DNS server to google 8.8.8.8 and it was working OK until now
l
Please file an issue for this here: https://github.com/pulumi/pulumi/issues
Include the output of
pulumi about
for the project at hand, masking any private information.
g
I think there was an issue with the Go problem. I'm not sure it has been resolved or not. Also, it turned out that my problem was connected to the fact that 2 stacks had different KMS keys, so executing 1 stack could not access the other KMS key. Weirdly enough the setup is working if 1 stack has pulumi service as secret provider while the other stack has KMS.
l
@great-sunset-355 can you access both KMS keys with the same set of credentials?
g
Yeah, I realized I was using 2 different profiles to access the keys, so I ended up fixing the key policy 🙂