prehistoric-translator-89978
06/23/2022, 10:22 PM├── infrastructure
│ ├── index.ts
│ ├── Pulumi.yaml
│ ├── Pulumi.dev.yaml
│ ├── Pulumi.staging.yaml
│ └── Pulumi.prod.yaml
├── myApp
│ ├── index.ts
│ ├── Pulumi.yaml
│ ├── Pulumi.dev.yaml
│ ├── Pulumi.staging.yaml
│ └── Pulumi.prod.yaml
└── ...
So we use infrastructure to create a vpc and other things in AWS...
Now, for some reason, myApp needs to get a hold of the vpcid output from infrastructure... How would I go about that?billowy-army-68599
prehistoric-translator-89978
06/24/2022, 1:15 AM