Hi there, like many others, I’d like to thank you for this amazing tool. I love how easy it is to use to create your boilerplate framework of terraform config as well being so easy to setup environments. Which leads me to my question.
I have been primarily working on my TS_ENV=dev stacks environment and its been working great!
I am now at a point where I want to initialize my TS_ENV=prod stack environment. Question here is that with the way I setup my stacks, its trying to provision some global resources again such as Route53 to be more specific.
Is there a method to instantiate these global resources so they are not done on a per environment level? Or an ignore env X,Y,Z for this stack?
I see another discussion about the terraspace up all
command and to configure your app.rb to handle it. Wondering if we can say that only prod can call X stack? I tried to move my global resources into a global stack name to configure it this way, but its only handled now via the up all
command but not calling the stack directly.
Maybe support:
config.all.ignore_stacks = nil
config.":ENV".ignore_stacks = nil. <-- allow choosing of envs?
Cheers, hope I explained myself correctly