https://learn.microsoft.com/en-us/azure/developer/terraform/test-modules-using-terratest#unit-test
Following along with the above link (code shown below). I am able to get a Terraform Plan with the out being specified as a certain name, but what if I had a loop and the tfplan was actually iterating and was for example, terraform.tfplan1, 2, 3, etc.
`tfPlanOutput := "terraform.tfplan"
terraform.Init(t, tfOptions)
terraform.RunTerraformCommand(t, tfOptions, terraform.FormatArgs(tfOptions, "plan", "-out="+tfPlanOutput)...)`
Is there a known way to then have the apply directly reference the specified terraform.tfplan(###) I want? I see the Terraform.apply, but i'm having a hard time specific pointing to 1 "-out=" file. Maybe I don't want to apply each tfplan, but for a given moment, just 1 of them. How do I Isolate the choice?