You add a new provider to your configuration and immediately run terraform apply in the CLI using the local backend. Why does the apply fail?
You add a new provider to your configuration and immediately run terraform apply in the CLI using the local backend. Why does the apply fail?
When you add a new provider to your Terraform configuration and immediately run terraform apply, it fails because Terraform first needs to install the necessary plugins. Terraform uses providers to interact with various infrastructure platforms, and these need to be installed before any apply operation can proceed. Without the required provider plugins, Terraform cannot understand how to execute the configuration you have specified.
Answer is D