Is it convention to export the VPC object when you...
# general
b
Is it convention to export the VPC object when you have a multi-stack Pulumi setup? Or will that pretty much cause everything inside the VPC to be exported?
b
It will export the entire object
b
so doing something like… “export const vpc = new awsx.ec2.Vpc(…);” could cause a very large export?
b
Not huge
b
say you create a database, and the database is within the VPC, will the database object also be exported too since the VPC is?
b
No
that won't
b
ok thanks, just trying to do some debugging for https://github.com/pulumi/pulumi/issues/3279
b
👍