Skip to content

Commit a9ddb69

Browse files
authored
+ provider.tf
1 parent 5b92f6e commit a9ddb69

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Terraform/src/provider.tf

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)