Reference Architecture: Is it possible to read the root email addresses and account names from a file?
Is it possible to read the root email addresses and account names from a file when I'm using the Gruntwork CLI tool to create my new AWS accounts for the Reference Architecture deployment? --- <ins datetime="2022-05-21T01:29:24Z"> <p><a href="https://support.gruntwork.io/hc/requests/108645">Tracked in ticket #108645</a></p> </ins>
It is, our Gruntwork CLI wizard has a save system based on generating, checking for, and reading boilerplate var-files in known paths If you run `gruntwork wizard` you will see this output if `--log-level` is `INFO` or higher, and note this line: ``` The currently configured save directory for your wizard outputs is: /Users/gruntwork/.gruntwork-cli-wizard ``` ``` $ gruntwork wizard [gruntwork] INFO[2022-05-20T21:40:35-04:00] Starting bootstrap process for the Gruntwork Reference Architecture... [gruntwork] INFO[2022-05-20T21:40:35-04:00] This tool features a save system that will store the outputs of your wizard steps [gruntwork] INFO[2022-05-20T21:40:35-04:00] The currently configured save directory for your wizard outputs is: /Users/gruntwork/.gruntwork-cli-wizard [gruntwork] INFO[2022-05-20T21:40:35-04:00] This means that you can complete one of the wizard steps whenever you're ready, then quit and return later to complete the rest. [gruntwork] INFO[2022-05-20T21:40:35-04:00] Once you run `$ gruntwork form fill`, or confirm you want to run the form fill wizard, all your saved outputs will be fed into your ref arch ```