We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aefbecc commit 8108c3cCopy full SHA for 8108c3c
3_networking/application-gateway/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 # Use the subscription ID variable
19
0 commit comments