Complete the command to apply the Terraform configuration.
terraform [1]The terraform apply command executes the changes required to reach the desired state of the configuration.
Complete the command to apply Terraform changes automatically without asking for confirmation.
terraform apply [1]The -auto-approve flag skips the interactive approval step and applies changes immediately.
Fix the error in the command to apply Terraform changes with a specific variable file.
terraform apply [1]=production.tfvarsThe -var-file flag is used to specify a file containing variable values.
Fill both blanks to run Terraform apply with a plan file and skip approval.
terraform apply [1] [2]
Use the plan file name as the first argument and -auto-approve to skip confirmation.
Fill all three blanks to apply Terraform changes with a variable file, skip approval, and disable state locking.
terraform apply [1] [2] [3]
Use -var-file to specify variables, -auto-approve to skip confirmation, and -lock=false to disable state locking.