Skip to content

Instantly share code, notes, and snippets.

@davidemunoz94
Last active July 24, 2026 03:04
Show Gist options
  • Select an option

  • Save davidemunoz94/a18c7cb733414d8a5ed36bd021b5e8cf to your computer and use it in GitHub Desktop.

Select an option

Save davidemunoz94/a18c7cb733414d8a5ed36bd021b5e8cf to your computer and use it in GitHub Desktop.
Azure Provider block
# Set the Azure provider source and version being used
terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "=3.0.0"
}
}
}
# Configure the Microsoft Azure Provider
provider "azurerm" {
features {} #Features block is required
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment