Apologies if this may appear like a trivial question, but when I usually run terraform plan or terraform apply you get a dump at the end of information about what what resources will be created, changed or destroyed. This is great!
However, as you may notice, sometimes this output of resources exceeds the terminal buffer, so I can't see all the resources being changed.
So how would I dump this exact information into a readable file so that I can view everything that is going to be changed?
Disclaimer - it is not terraform plan -out=tfplan
, as this creates an unreadable file.
Anyone have any suggestions here? I also tried stdout into a file, but this did not show the full dump of resources as I need it to.