Deploy Azure infra securely at scale using Scalr.

The Scalr provider configurations feature securely passes credentials to Terraform runs. Manage Azure credentials through Terraform with the Scalr provider.


resource "scalr_provider_configuration" "azurerm" {
  name              = "azurerm"
  account_id        = "acc-12345678"
  azurerm {
    client_id       = "my-client-id"
    client_secret   = "my-client-secret"
    subscription_id = "my-subscription-id"
    tenant_id       = "my-tenant-id"
  }
}