terraform/website
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
..
docs command: add "apply -auto-approve=false" flag 2017-06-27 11:22:26 -07:00
guides website: guide to running Terraform in automation 2017-06-16 18:04:21 -07:00
intro Warn that amis are region specific (#15312) 2017-06-16 08:18:29 +01:00
layouts website: guide to running Terraform in automation 2017-06-16 18:04:21 -07:00
upgrade-guides website: new filesystem layout for core/provider split 2017-06-13 11:25:32 -07:00