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 5b92f6e commit a9ddb69Copy full SHA for a9ddb69
Terraform/src/provider.tf
@@ -0,0 +1,21 @@
1
+terraform {
2
+ required_version = ">= 1.8, < 2.0"
3
+ # Specify the required providers and their versions
4
+ required_providers {
5
+ azurerm = {
6
+ source = "hashicorp/azurerm" # Source of the AzureRM provider
7
+ version = "~> 4.16.0" # Version of the AzureRM provider
8
+ }
9
+ fabric = {
10
+ source = "microsoft/fabric"
11
+ version = "0.1.0-beta.7"
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
20
21
+provider "fabric" {}
0 commit comments