Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retrieving Output for Failed Executions of Terraform #1120

Closed
hyp0th3rmi4 opened this issue May 11, 2022 · 3 comments · Fixed by #1530
Closed

Retrieving Output for Failed Executions of Terraform #1120

hyp0th3rmi4 opened this issue May 11, 2022 · 3 comments · Fixed by #1530
Labels
awaiting response Waiting for a response or more data from issue reporter question

Comments

@hyp0th3rmi4
Copy link

Would it be possible to return the output (string format) when a terraform execution fails?
It seems that the internal method of terratest/terraform already have access to it, but they simply strip it away here:

_, err := shell.RunCommandAndGetOutputE(t, cmd)

Since terraform returns always 1 as error code for validation errors, it would be helpful to access the output stream to verify the cause of the error. At the moment executing a tf plan with errors (variable validation or other error during plan phase) provides an opaque value (=1) that will not enable the caller to verify what is the exact cause of the failure.

@denis256
Copy link
Member

Hi,
I was wondering if can be used RunTerraformCommandE which will return an error and output

https://github.com/gruntwork-io/terratest/blob/master/modules/terraform/cmd.go#L68

@denis256 denis256 added question awaiting response Waiting for a response or more data from issue reporter labels May 16, 2022
@hyp0th3rmi4
Copy link
Author

Hi @denis256 yes that would be a possibility, I have realised that actually if we do use InitAndPlanE(...) we do get the standard output already, so if we know that the terraform plan won't be executed (as this is my use case) we can use these methods and forget about those calls that return PlanStruct without the logs.
I think it may be still useful to both have the plan parsed and the log. But it is not necessary for this use case.

@hyp0th3rmi4
Copy link
Author

hyp0th3rmi4 commented Jun 17, 2022

Ok, now I have realised what is the issue with the use of the approach you have proposed. A common test case may be that we execute terraform plan and we expect the plan to fail. Hence we want to do the following:

  • check the exit code
  • check the log for some specific message
    at present time we have methods for doing this independently, but if we choose one way, we aren't able to do get the other.

We can rewrite in our testing logic the implementation of:

func GetExitCodeForTerraformCommandE(t testing.TestingT, additionalOptions *Options, additionalArgs ...string) (int, error) {

This may not be very good over time as we depend on the internal implementation of the method.

I would imagine that having the ability to get back both the exit code and the stdout/stderr (perhaps as two separate strings) would a generally useful feature.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting response Waiting for a response or more data from issue reporter question
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants