This message was deleted.
# general
s
This message was deleted.
👍 1
r
This is the unfortunate consequence of https://github.com/pulumi/pulumi/issues/5758 For your specific question, I think you could use the following:
Copy code
const vpcId = terraformState.outputs["vpc_id"];
const infraVPC = vpcId.apply(id => aws.ec2.getVpc({ id }));
👍 1
b
Yeah that works 🙂 Thanks for the issue link! (apparently a VPC id is not enough to identify a single VPC, however my terraform output was undefined, my bad)
🎉 1