Hi, I am creating infrastructure with Pulumi and typescript in GCP (info for context). I see my stack configuration file growing with each new resource, and it is at a point where the config will be over 1000 lines, and it won't stop there. I was wondering is there a way to create other configuration files that you can access in code.
I know Pulumi.yaml can be used for shared configuration between the stacks, but I would like to break it up even further, having different configuration stack for resource x, and for resource y etc.
The reason I'm thinking about this is because I want to introduce defaults to the configuration to make it more manageable.