如何在没有交互式提示的情况下执行 Terraform 操作?

Dan*_*Dan 26 terraform

我如何能够执行以下命令:

terraform apply

#=>

. . .

Do you want to perform these actions?
  Terraform will perform the actions described above.
  Only 'yes' will be accepted to approve.

  Enter a value:
Run Code Online (Sandbox Code Playgroud)

没有随后的交互式提示?

Per*_* P. 54

terraform apply -auto-approve
Run Code Online (Sandbox Code Playgroud)

https://www.terraform.io/docs/commands/apply.html#auto-approve

  • 我使用更短的 bash“alias tfaa='terraform apply -auto-approve'” (3认同)