early-match-56268
06/22/2019, 9:27 PMpulumi
├── Pulumi.dev.yaml
├── Pulumi.yaml
├── README.md
├── gcp
│ ├── README.md
│ ├── index.ts
│ └── k8s.ts
├── index.ts
├── k8s
│ ├── index.ts
│ ├── namespace.ts
│ └── secret.ts
├── package-lock.json
├── package.json
└── tsconfig.json
and in the pulumi/index.ts
import * as gcp from './gcp'
export let devKubeconfig = gcp.devKubeconfig
My problem is that none of resources in the pulumi/k8s/
dir are getting picked up by pulumi when i run pulumi up
. If I import the resources and then export one of them in the pulumi/index.ts
then they show up. Trying to figure out what I am doing wrongcuddly-barista-79466
06/24/2019, 3:15 PMgentle-diamond-70147
06/24/2019, 4:18 PMearly-match-56268
06/25/2019, 12:44 AMgentle-diamond-70147
06/25/2019, 1:17 AM