Last active
July 24, 2026 03:04
-
-
Save davidemunoz94/a18c7cb733414d8a5ed36bd021b5e8cf to your computer and use it in GitHub Desktop.
Azure Provider block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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