Which terraform command will download the necessary provider plugins specified in the file?
- terraform plan
- terraform init
- terraform show
- terraform apply
Explanation: Terraform commands include:
- terraform init - initializes the Terraform working directory. It downloads the necessary provider plugins specified in the file
- terraform plan - creates an execution plan specifying what actions Terraform will take to achieve the desired state defined in the configuration file.
- terraform apply - applies the changes required to reach the desired state of the configuration.
Related exam: 15.8.2 Module Quiz Answers – CCNA 200-301 Exam v1.1 Supplemental Module
