-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
terraform show, does not work properly for v0.12 #21864
Comments
Hi Marc - check out |
@phinze |
Aha! My mistake - I thought you could get a plan representation with the changes represented. Let's reopen this then so we can track this need to get the plan changes from |
awesome, thanks! |
Ok I've gotten a chance to test this now and I can now confirm it definitely works on plans, you just have to specify the plan file as an argument. Check out the example below. # main.tf
resource "random_pet" "test" {}
I think with this you should be good to go! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
When I make the following change to HCL:
I then run
terraform plan
I expect
terraform show
to show the same diff output asterraform plan
. However it only displays the resource name (this behavior has changed between TF 0.11 and TF 0.12)We have some automation that relies on this behavior. Is there a plan to change
terraform show
to display the full output from the plan file?The text was updated successfully, but these errors were encountered: