I have around 3320 resources to be created in my tf file. when I ran terraform apply, bunch of resources were created and then terraform throwed couple errors(esp around "genesyscloud_auth_role" for creating custom roles). I noticed that not all my data was processed in the input file, for ex: there are 124 Queue resources and only 28 of them were created and none of the errors were related to the queues,. So my question is, will terraform automatically stops processing input file after bunch of errors? and how can I validate which objects were created and which ones are not?
CX as Code will stop if it encounters a fatal error while calling one of our APIs. Usually in these types of situations you would run a terraform plan. The "not" created items should up in the plan so you should be able to parse the plan and see what has changed.
Thanks for the reply, when I run terraform plan, the data is rolled over and I am not able to get all details. If I am trying to write the plan to a file, "terraform plan -out=tfplan", the data is all gibberish. Is there a way to write the plan to an output file in a readable format.