Skip to content

Instantly share code, notes, and snippets.

@kunduso
Created November 3, 2020 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunduso/915f67b1a20233d36c88294a1209d2d0 to your computer and use it in GitHub Desktop.
Save kunduso/915f67b1a20233d36c88294a1209d2d0 to your computer and use it in GitHub Desktop.
Terraform Azure Provider
# Configure the Azure provider
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "2.34.0"
}
}
}
provider "azurerm" {
version = "2.34.0"
subscription_id = var.subscription_id
client_id = var.client_id
client_secret = var.client_secret
tenant_id = var.tenant_id
features {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment