freundcloud

Specify service principal credentials in a Terraform provider block

```hcl terraform { required_providers { azurerm = { source = “hashicorp/azurerm” version = “~>2.0” } } }

provider “azurerm” { features {}

subscription_id = “" tenant_id = "" client_id = "" client_secret = "" }

Your code goes here

```plaintext