We are seeing pulumi take 3+ minutes to read aws:e...
# general
a
We are seeing pulumi take 3+ minutes to read awsec2Vpc and subnets during an update? This is slowing our deployments quite a bit, any reason this might be happening?
Copy code
const vpc = awsx.ec2.Vpc.fromExistingIds("vpc", {
  privateSubnetIds: vpcPrivateSubnetIds,
  publicSubnetIds: vpcPublicSubnetIds,
  vpcId
});