I'm creating a Terraspace project to build multiple stacks (about 14 in total) that share some vars. I will create multiple copies of this stack (about 20) so I don't want to have to manage multiple tfvars in each stack, that would be 280 in total. So I decided to put all the tfvars as global into the /configuration/terraform folder. I have one file per each environment with all the variables in it. This is working fine but the problem I have now is that all the stacks get all the vars, which is expected, but I'm getting lots of warnings from Terraform that make the console output difficult to read. I was hoping there is a way to have a filter or post-processor to be applied to the generated tfvars to remove unused variables. Something similar to the "seed" feature that analyzes the variables and generates a sample tfvar only with the existing variables. Is there any existing feature or plan for it?
thanks