Files
opentf/command
David Glasser 039d36bf91 command: add "apply -auto-approve=false" flag
A common reason to want to use `terraform plan` is to have a chance to
review and confirm a plan before running it.  If in fact that is the
only reason you are running plan, this new `terraform apply -auto-approve=false`
flag provides an easier alternative to

    P=$(mktemp -t plan)
    terraform refresh
    terraform plan -refresh=false -out=$P
    terraform apply $P
    rm $P

The flag defaults to true for now, but in a future version of Terraform it will
default to false.
2017-06-27 11:22:26 -07:00
..
2015-04-29 13:07:13 -05:00
2017-01-26 14:33:49 -08:00
2017-02-24 18:32:59 -05:00
2017-02-24 18:32:59 -05:00
2017-06-27 11:07:45 -04:00
2017-06-26 18:28:45 -04:00
2017-06-15 14:26:12 -04:00
2017-06-15 15:23:16 -04:00
2017-06-22 15:31:36 -04:00
2017-06-15 14:26:12 -04:00
2014-05-24 12:04:43 -07:00