Closed braunsonm closed 3 years ago
im pretty sure terraform plan
shows you kapp diff. what output do you see?
Thanks @cppforlife this was just a question is all.
Re-opening this as this is not the case. It would be really great to have this working properly. Otherwise we'll be calling apply
and cancelling it on the pipelines
As a not very ideal workaround for now in pipelines:
scripts/terraform-plan.sh
#!/usr/bin/expect -f
set timeout -1
spawn ./scripts/terraform-apply.sh
expect "*Enter a value:*"
send -- "n\r"
expect eof
scripts/terraform-apply.sh
#!/bin/bash
terraform apply -input=false
This issue is being marked as stale due to a long period of inactivity and will be closed in 5 days if there is no response.
Hi there!
I just had a question about this resource I didn't see in the docs.
Can the kapp resource output the diff even during the
terraform plan
phase? I see the option to enable diff output but I would have assumed that only outputs when youapply