This message was deleted.
# general
s
This message was deleted.
c
I not sure how Pulumi handle this case, I did my trick by convert
program_subnet.py
into Class and create a function like `vpc_subnet(vpc_id,cidr)`then at program_vpc.py just import this class and call function after vpc create
other way is using
Copy code
pulumi.export("vpc1_id", vpc1.id)
pulumi.export("vpc2_id", vpc2.id)
as array export, so in next python file you can refer value without write so many export line