We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05491d2 commit e455a78Copy full SHA for e455a78
1 file changed
terraform-infrastructure/provider.tf
@@ -0,0 +1,19 @@
1
+# provider.tf
2
+# This file configures the Azure provider to interact with Azure resources.
3
+# It specifies the required provider and its version, along with provider-specific configurations.
4
+
5
+terraform {
6
+ required_version = ">= 1.8, < 2.0"
7
+ # Specify the required provider and its version
8
+ required_providers {
9
+ azurerm = {
10
+ source = "hashicorp/azurerm" # Source of the AzureRM provider
11
+ version = "~> 4.16.0" # Version of the AzureRM provider
12
+ }
13
14
+}
15
16
+provider "azurerm" {
17
+ features {} # Enable all features for the AzureRM provider
18
+ subscription_id = var.subscription_id # Add your subscription ID here
19
0 commit comments