Hi all, im trying to use setup pulumi deployments ...
# pulumi-cloud
s
Hi all, im trying to use setup pulumi deployments in pulumi cloud with AWS butam running into issues where pulumi deployments cannot access our VPC. Before this we used pulumi locally and connected to our VPC with a VPN, in pulumi cloud i can see that the OIDC step succeeds and validated it with running
aws sts get-caller-identity
in the Pre-run command, but i still get an error that looks like this: pulumiprovidersaws default_6_83_0 error: pulumiprovidersaws resource 'default_6_83_0' has a problem: unable to validate AWS credentials. I suspect that we are having networking issues between pulumi cloud and our VPC because we dont use a VPN, is there a way to set this up where we can have pulumi deployments work with a private VPC?
l
That error does not imply anything to do with your VPC. It is purely an authentication problem. Without seeing your provider configuration I can't say what. First thing I'd try would be to add
skipCredentialsValidation: true
to your provider config and see what happens.