Surprising behavior: when I return an `aws.ec2.Vpc...
# general
b
Surprising behavior: when I return an
aws.ec2.Vpc
object as an export, it turns into its VPC ID as a string. In Terraform or CloudFormation I would expect to get the ID back, but in Pulumi these are all objects that I'm dealing with. At minimum I would have expected it to turn into, say,
{ id: "vpc-xxx" }
- stripping out fields that the exporter doesn't know what to do with.