easy
Single Answer
0

Which Terraform block would add functionality for a particular third-party cloud or software vendor?

Answer Options

A

resource

B

plan

C

provider

D

vendor

Correct Answer: C

Explanation

The provider Terraform block adds functionality for vendors, such as Azure, AWS, and Cisco Catalyst Center, just to name a few. The resource Terraform block is how you address resources inside of a provider, such as the credentials for a provider. The Terraform command terraform plan creates an execution plan from the configuration files. vendor is not a valid block or command.

terraform
infrastructure-as-code
providers