easy
Single Answer
0

Which command will prepare the workspace for Terraform?

Answer Options

A

terraform plan

B

terraform validate

C

terraform init

D

terraform apply

Correct Answer: C

Explanation

The command terraform init will initialize a workspace and prepare it for configuration. The command terraform plan will create the execution plan. The command terraform validate will validate your configuration and is typically run before you create the plan. The command terraform apply will create or update infrastructure based on the configuration.

terraform
cli
workspace
initialization