...

/

Terraform Providers

Terraform Providers

Understand about Azure Cloud Provider using terraform.

Viewing Terraform provider

Almost everything we do needs a provider. In this case, we’ll need azurerm. A provider allows us to configure the credentials used to authenticate with Azure and a few other things. For more information, please visit the Azure Provider section of the Terraform documentation.

Let’s take a quick look at the definition of the provider.tf.

The output of the provider file is as follows.

Press + to interact
provider "azurerm" {
features {}
}

The provider is almost empty. Usually, we ...